/* Nunito Font Imports */
@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.left-section {
    width: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-section {
    width: 50%;
    background-color: #FBC37B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login-form {
    background-color: white;
    padding: 0px;
    border-radius: 12px;
    width: 100%;
    max-width:20em;
    text-align: center;
}
.ch-pwd{
    margin-top:100px;
    padding:30px 20px;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.logo {
    width: 250px;
    height: auto;
    margin-bottom: 40px;
}

.login-text {
    color: #333;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.4;
    font-weight:700;
}

.form-group {
    margin-bottom: 20px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 10px 40px;
    background-color: #f8f8f8;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    color: #828282;
    font-size: 14px;
    outline: none;
}

.form-input::placeholder {
    color: #828282;
}

.input-icon {
    position: absolute;
    left: 12px;
    color: #828282;
    font-size: 16px;
    z-index: 1;
}

.eye-icon {
    position: absolute;
    right: 12px;
    color: #828282;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
}

.signin-btn {
    width: 100%;
    padding: 8px;
    background-color: #EF4E23;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signin-btn:hover {
    background-color: #d63e1a;
}

.right-heading {
    color: #0C3154;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: "Nunito";
}

.world-tour-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .left-section {
        width: 100%;
        padding-top: 60px;
    }
    
    .right-section {
        display: none;
    }
    .logo {
        width: 200px;
    }

    .login-form {
        width: 280px;
        padding: 30px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
    }
    .ch-pwd {
        margin-top: 50px;
    }
    }