/************************************/
/* LOGIN START                      */
/************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

.login-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: contrast(80%);
}

.login-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

.login-info-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    padding: 40px 30px;
    text-align: center;
}

.info-content {
    max-width: 450px;
}

.login-img {
    filter: opacity(180%);
    max-width: 500px;
    margin-bottom: 20px;
}

.info-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: capitalize;
    text-align: justify;
}

.info-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #123524, #3E7B27, #74512D, #543310);
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.info-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.info-quote {
    font-style: italic;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.5;
}

.login-form-panel {
    flex: 0.4;
    display: flex;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 100px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
    animation: fadeInRight 1.2s ease forwards;
}


.logo-top {
    filter: opacity(180%);
    max-width: 200px;
    margin-bottom: 25px;
    margin-left: -5px;
}

.login-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.login-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    padding-left: 0;
    font-style: italic;
    text-transform: capitalize;
}

.login-form {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.login-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: none;
    border-radius: 8px;
    background: #E8F5E9;
    font-size: 15px;
    color: #000000;
    transition: all 0.3s ease;
}

.login-input:focus {
    background: #D0E7D2;
    outline: none;
    box-shadow: 0 0 5px rgba(46,125,50,0.3);
}

.login-btn {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    background: #3E7B27;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #543310;
}

.login-register {
    margin-top: 20px;
    text-align: center;
}

.login-register p {
    font-size: 14px;
    padding-left: 0;
}

.login-register-link {
    color: #3E7B27;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-register-link:hover {
    color: #2E5A1C;
    text-decoration: underline;
}

.login-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #555;
    text-align: center;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .login-wrapper {
        flex-direction: column;
        height: auto;
    }

    .login-info-panel {
        padding: 60px 20px;
        border-radius: 0 0 25px 25px;
    }

    .login-form-panel {
        padding: 40px 25px;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 600px) {
    .info-logo {
        width: 90px;
    }

    .info-title {
        font-size: 1.7rem;
    }

    .login-title {
        font-size: 1.4rem;
    }

    .login-input {
        font-size: 14px;
    }
}


/************************************/
/* LOGIN END                        */
/************************************/


/************************************/
/* REGISTRATION START               */
/************************************/

.register-link {
    margin-top: 20px;
}

.register-link p {
    color: rgb(3, 3, 3);
    font-size: 14px;
}

.register-link a {
    color: #030303;
    text-decoration: none;
    font-weight: bold;
}

/* Registration Container */
.register-container {
    margin: 40px;
    position: relative;
    z-index: 2;
    background-color: #FFFFFFF2;
    padding: 50px 40px;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.register-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.register-container p {
    margin-bottom: 25px;
    font-size: 17px;
}

.register-container input[type="text"],
.register-container input[type="password"],
.register-container input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: #fdfdfd;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.register-container input:focus {
    outline: none;
    background: #DDF6D2;
}

.register-container .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.register-container .form-row input {
    flex: 1;
    min-width: 200px;
}

.register-container .btn-login {
    background: #3E7B27;
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.register-container .btn-login:hover {
    background: #2e5620;
}

/* Shared Social login under registration */
.register-container .social-login {
    margin-top: 30px;
}

.register-container .social-login p {
    color: #000;
    font-size: 15px;
    margin-bottom: 12px;
}

.register-container .social-login a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border-radius: 6px;
    margin: 5px 10px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

/************************************/
/* REGISTRATION END                 */
/************************************/