body{
    margin: 0;
    font-family: Rubik;
    height:100%;
}
.main-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:auto;
    /* background-color: #f8f8f8; */
    background: linear-gradient(135deg, 
    rgb(255, 218, 203) 0%,
    #f6f7f9 15%,
    #f6f7f9 85%,
    rgb(255, 218, 203) 100%
);

    height: 100vh;
    /* width: 100vw */
}
.container
{
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    gap: 1vw;
    padding: 1vw;
    border-radius: 1vw;
    background-color: #fff;
    width: 65vw;
    height: 36vw;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.card-1
{
    width: 30vw;
    background:  linear-gradient(180deg, #FF7A00 0%, #FF9E4F 100%);
    border-radius: 2vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    /* align-items: center; */
    justify-content: center;
    padding: 1vw;
}
.card-2
{
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    justify-content: center;
    width: 35vw;
}
.card-2 img{
    width: 7vw;
    height: 7vw;
    margin-left: 13.5vw;
    margin-top: -1.2vw;
}
.card-2 h4{
    font-size: 1.8vw;
    text-align: center;
    margin: 0;
}
.card-2 p{
   margin: 0;
   font-size: 1vw;
   color: #666;
   text-align: center;
} 
.form
{
    display: flex;
    flex-direction: column;
    gap: 2vw;
    margin-top: 4vw;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 5vw; */
}
input{
    position: relative;
    text-align: center;
    padding: 0.7vw;
    border-radius: 0.5vw;
    border: 0.15vw solid #edefee;
    margin-top: 0.5vw;
    width: 85%;
    /* background-color: #ddd; */
    font-size: 1vw;
    /* outline: none; */
    /* transition: border-color 0.3s ease; */

}



 input:focus {
    border-color: #FF9E4F;
    outline: none;
}
span
{
    color:#45c380;
}
.form button{
     width: 82%;
     padding: 0.8vw;
    background: linear-gradient(90deg, #FF7A00 0%, #FF9E4F 100%);
    border: none;
    border-radius: 0.5vw;
    color: white;
    font-size: 1.1vw;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1vw;
}
.card-1 h4{
    margin: 0;
    color: white;
    font-size: 2.4vw;
    /* text-align: left; */
    margin-top: 1vw;
    width: 24vw;
    margin-left: 2vw;
}
.card-1 p{
    margin: 0;
    color:white;
    font-size: 1.1vw;
    /* text-align: left; */
    width: 24vw;
    margin-left: 2vw;
}
.curved-line {
    width: 12vw; 
    height: 0px; 
    border: 0.15vw solid white; 
    border-radius: 50%; 
    transform: rotate(-2deg);
    margin-left: 6.5vw; 
}
.line
{
    background-color: #FF7A00;
    width: 6vw;
    height: 0.2vw;
    margin-top: 2vw;
}
.card-1 img{
    width: 100%;
    margin-top: -4.1vw;
    margin-top:1.8vw;
    transform: scale(1);
    position: relative;
    /* top: 20px; */
    
}
.email{
    position: absolute;
    margin-left: -23vw;
    margin-top: -17vw;
    font-size: 1.1vw;
    z-index: 1;
    /* transform: translateY(-50%); */

    background-color: #fff;
    color:#9ea2a5;
}
.pass
{
    position: absolute;
    margin-left: 1.2vw;
    /*margin-top: -7vw;*/
    font-size: 1.1vw;
    z-index: 1;
    /* transform: translateY(-50%); */
    background-color: #fff;
    color:#9ea2a5;
}

 .password-container {
            position: relative;
            width: 85%;
             /* Adjust width */
        }

        .password-container input {
            width: 100%;
            /*padding: 0.7vw; */
            font-size: 1vw;
            border: 0.15vw solid #edefee;
            border-radius: 0.5vw;
            box-sizing: border-box;
        }

        .password-container .toggle-password {
            position: absolute;
            top: 1.9vw;
            right: 0.5vw; /* Adjust position */
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 1.2vw;
            color: #9ea2a5; /* Icon color */
        }
        
        .password-container input:focus {
    border-color: #FF9E4F;
    outline: none;
}

.login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #FF7A00 0%, #FF9E4F 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 122, 0, 0.2);
}
        