@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');


*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
}

:root {
    --bg-color: rgba(46, 196, 182, 0.1) ;
    --heading: #000B0A;
    --paragraph: #737373;
    --box-label: #011C34;
    --button: #2EC4B6;
}


body {
    margin: 0px;
    background-color: var(--bg-color);
    background-repeat: no-repeat;
    height: 100vh;
    font-family: 'Lato', monospace;

}

.main_container{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    /* padding: 0px 8%; */
    justify-content: space-between;
    padding: 50px 8%;
    
}

.left_pane {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    
    
    
    gap: 1rem;
    
}

.left_pane img{
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.left_pane p{
    color: var(--paragraph);
}

@media (max-width: 1024px) {
    

    .left_pane {
        padding-bottom: 30px;
    }
    
    
    

}

@media (min-width: 1024px) {
    .main_container {
        flex-direction: row;
    }

    .left_pane {
        width: 50%;
        
        display: flex;
        
        
        
    }
    .right_pane {
        width: 50%;
    }

    
    
}


.container {
    
    display: flex;
    
}

.right_pane {
    position: relative;
    /* max-width: 700px; */
    width: auto;
    height: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


.form .input-box  {
    width: 100%;
    margin-top: 20px;
}

.input-box label {
    color: var(--box-label);
    font-weight: 600;
}

.form .select-box  {
    width: 100%;
    margin-top: 20px;
}

.select-box label {
    color: var(--box-label);
    font-weight: 600;

}


.form :where(.input-box input, .select-box) {
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #707070;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
}
  
.input-box input:focus {
    /* box-shadow: 1px 1px rgba(46, 196, 182, 1);  */
    border-color: #2EC4B6;
    outline: none;
    box-shadow: 0 0 3px #2EC4B6;
    
}
  
.form .column {
    display: flex;
    column-gap: 20px;
}
  
.gender input {
    accent-color: rgb(130, 106, 251);
}
  
.form :where(.gender input, .gender label) {
    cursor: pointer;
}
  
.gender label {
    color: #707070;
}
  
.address :where(input, .select-box) {
    margin-top: 15px;
}
  
.select-box select {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    color: #707070;
    font-size: 1rem;
}
  
.form button {
    height: 55px;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--button);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
  
.form button:hover {
    background: rgb(88, 56, 250);
}

  
.footer {
    text-align: center;
    justify-content: center;
    align-content: center;
    display: block;
    font-size: 14px;
}
.footer a {
    color: var(--button);
    text-decoration: underline;
}

.footer2 {
    text-align: center;
    justify-content: center;
    align-content: center;
    display: block;
    font-size: 14px;
}
.footer2 a {
    color: var(--button);
    text-decoration: underline;
}


/*Responsive*/

@media screen and (max-width: 500px) {
    .form .column {
      flex-wrap: wrap;
    }
    .form :where(.gender-option, .gender) {
      row-gap: 15px;
    }

    .footer {
        text-align: center;
        justify-content: center;
        align-content: center;
        display: none;
        font-size: 14px;
    }
    

}

.footer2contain {
    margin-top: 10px;
}

@media screen and (min-width: 500px) {
    

    .footer2 {
        margin-bottom: 10px;
        text-align: center;
        justify-content: center;
        align-content: center;
        display: none;
        font-size: 14px;
    }


}



.select-box2 select {
    width: 100%;
    padding: 20px;
    margin-bottom: 16px;
}

.select-box2 label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-container select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    margin-bottom: 0px;
    outline: none;
    font-size: 14px;
    color: #707070;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-container {
    width: 100%;
    margin-top: 20px;
}

.form-container select:focus {
    border-color: #2EC4B6;
    outline: none;
    box-shadow: 0 0 3px #2EC4B6;
    
}