.register{
display: flex;
justify-content:space-around;
margin-top: 80px;
margin-bottom: 80px;
width: 100%;
height: 100%;
padding: 30px;
}
.main-content{
display: flex;
justify-content:center;
align-items: center;
gap: 30px;
height: 100%;
width:80%;
}
.nav-list{
    display: flex;
    flex-direction: column;
}
.nav-item{
    list-style-type: none;
    line-height: 14px;
    padding: 10px;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 400;
}
.status{
    box-sizing: border-box;
    border-top: 5px solid blue;
    border-radius:5px ;
    width:300px;
    color: rgb(18, 18, 190);
    height:50px
}
.passpo{
    /* width: 60%;
    height:70%; */
    margin-top: 90px;
    width:550px ;
    height: 300px;
    border-radius: 30px;
}
.detail{
    box-sizing: border-box;
    align-content: center;
    width: 400px;
    background-color: rgb(18, 18, 190);
    color: white;
    height: 50px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.checkForm-wrapper{
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: rgb(6, 6, 90);
    color: white;
    box-sizing: border-box;
    box-sizing: border-box;
    border: 30px solid #FFFFFF;
    box-shadow: 2px 3px 3.5px 3px rgb(134, 133, 133);
    border-radius: 3px;
}
.underline{
    font-family: sans-serif;
    font-size: 30px;
    font-weight: 600;
    padding: 10px;
    height: 50px;
}
.checkRsnStatus{
    display: flex;
    flex-direction: column;
    row-gap:20px;
    padding-bottom: 10px;
}
.formItem{
    display: flex;
    flex-direction: column;
    padding :10px;
    height:60px ;
    row-gap: 10px;
    font-size: 20px;
    font-weight: 400;
}
.inputBox{
    height: 50px;
    padding: 10px;
}
.checkbtn{
    background-color: rgb(243, 131, 4);
    border: none;
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    align-content: center;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px;
    width: 150px;
}
/* documentsection */
.document-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin:80px;
}
.document-section h5 {
    font-size: 28px;
    margin-bottom: 20px;
}
.document-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.doc-card {
    width: 280px;
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}
.doc-icon {
    background: #ff5722;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.doc-icon i {
    font-size: 30px;
    color: white;
}
.doc-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}
.doc-desc {
    font-size: 14px;
    color: gray;
    margin-top: 5px;
}
.doc-link {
    color: #ff5722;
    font-weight: bold;
    margin-top: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.doc-link i {
    margin-left: 5px;
}
.doc-card:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}