﻿body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
   
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

/* LEFT TRIANGLE */
.left-panel {
    width: 70%;
    height: 100vh;
    background: #023A6B;
    clip-path: polygon(0 0, 75% 50%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-wrapper {
    min-width: 440px;
    min-height: 440px;
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    background: #003062;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 400px;
    margin-bottom: 8px;
}

.brand-name{
    color: #023A6B;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}
.orgs
{
    color:#FA641D;
}
/* AUTH BOX */
.auth-box {
    width: 400px;
    max-width: 100%;
    background: #ffffff;
    border: 3px solid #023A6B;
    border-radius: 26px;
    padding: 50px 55px;
    margin-left: -250px;
    box-shadow: 12px 12px 0px #023A6B;
    text-align: center;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #023A6B;
    margin-bottom: 25px;
}

/* INPUT */
.input-field {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    border-radius: 40px;
    border: 2px solid #023A6B;
    font-size: 16px;
    margin-bottom: 18px;
    outline: none;
}

/* TERMS */
.terms-row {
    font-size: 13px;
    text-align: left;
    margin-bottom: 20px;
}

    .terms-row a {
        color: #023A6B;
        font-weight: 600;
        text-decoration: underline;
    }

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 15px 0;
    font-size: 20px;
    background: #023A6B;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

    .submit-btn:hover {
        background: #034577;
    }

.note-text {
    margin-top: 15px;
    font-size: 14px;
    color: #F6A41A;
}

/* TABLET */
@media(max-width: 992px) {
    .login-container {
        flex-direction: column;
       
       
    }

    .left-panel {
        width: 100%;
        height: 260px;
        clip-path: none;
        justify-content: center;
        align-items: center;
    }

    .logo-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        min-width: 200px;
        min-height: 200px;
    }

    .auth-box {
        width: 70%;
        padding: 20px;
        margin-left: 0;
        margin-top: 20px;
        box-shadow: none;
    }
}

/* MOBILE */
@media(max-width: 600px) {
    .logo-wrapper {
        min-width: 160px;
        min-height: 160px;
    }

    .logo-img {
        width: 120px;
    }

    .brand-name {
        font-size: 20px;
    }

    .auth-box {
        width: 80%;
        padding: 30px 20px;
    }

    .login-title {
        font-size: 26px;
    }

    .input-field {
        padding: 12px 16px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 13px 0;
        font-size: 18px;
    }

    .note-text {
        font-size: 13px;
    }
}


/*<==============UserIndex===============>*/

.logout-btn {
    background: #023A6B;
    padding: 10px 24px;
    border: none;
    border-radius: 26px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: end;
    gap: 8px;
}

    .logout-btn i {
        font-size: 18px;
    }

/*<==============UserIndex===============>*/