@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-bg: #fff;
    --text-color: #11171D;
    --body-color: #435B6F;
    --button-bg: #003152;
    --button-hover-bg: #012741;
}

body {
    font-family:"Outfit", serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--primary-bg);
    color: white;
}
.header-menu {
    border-bottom: 1px solid #D9E1E8;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
.nav-buttons {
    display: flex;
    gap: 15px;
}
.nav-buttons a {
    text-decoration: none;
    color: white;
    background-color: var(--button-bg);
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}
.nav-buttons a:hover {
    background-color:var(--button-bg);
}

.buttons a {
    text-decoration: none;
    color: var(--primary-bg);
    background-color: var(--button-bg);
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 32px;
}
.section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}
.section{
    flex: 1;
    padding: 20px;
}
.section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.main-section {
    display: flex;
    gap: 32px;
    padding: 60px 20px;
}
.innre-content {
    padding: 40px;
    text-align: center;
}
.heading-first {
    margin-bottom: 20px;
    font-size: 42px;
}
.login-buttons a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}
.buttons.signuped {
    margin-top: 30px;
}
.w50{
    width: 50%;
}
.right-content.w50 {
    background: #DFE6EC;
    border-radius: 32px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
}

.left-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 32px;
}

footer{
    background-color: var(--text-color);
    padding: 60px 0px;
}
.upper-small a {
    color: #fff;
    text-decoration: none;
}

.upper-small {
    color: #fff;
}
.upper-small p {
    color: #fff;
}
.upper-small {
    display: flex;
    gap: 30px;
    padding: 20px 0px;
}
.upper-small p a {
    color: #006EB8;
}
heading {
    color: #ADDEFF;
    font-size: 24px;
}
.footer-logo {
    padding: 20px 0px;
    border-bottom: 1px solid #232F39;
}


/* Login Page CSS */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.login-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 50%;
}
.login-box h2 {
    margin-bottom: 40px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.input-group {
    margin-bottom: 15px;
    text-align: left;
}
.input-group label {
    display: block;
    color: var(--text-color);
}
.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #A0B4C5;
    border-radius: 5px;
}
.password-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.password-wrapper input {
    flex: 1;
}
.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
}
.forgot-password {
    margin: 10px 0;
}
.forgot-password a {
    text-decoration: none;
    color: var(--text-color);
}
.cta-button {
    width: 100%;
    padding: 10px;
    background-color: var(--button-bg);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.cta-button-2 {
    /* width: 100%; */
    padding: 10px;
    background-color: var(--button-bg);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.forgot-password-2 {
    margin-top: 24px;
}
.forgot-password-2 a {
    color: #006EB8;
}
.cta-button:hover {
    background-color: var(--button-hover-bg);
}
.login-left {
    /* height: 100vh; */
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner {
    background-image: linear-gradient(315deg, #EEEEFF, #988BFE);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}
.login-inner {
    display: flex;
}
.declaration {
    text-align: left;
    margin-bottom: 20px;
}
.declaration p{
   font-size: 13px;
}

/* My profile css */
.profile-container {
    background: var(--primary-bg);
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    /* width: 50%; */
    text-align: left;
}
.profile-pic {
    width: 56px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}
.input-group-2 {
    margin-top: 12px;
}
input, textarea {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.main-profile {
    display: flex
;
}

/* Responsive CSS */


@media (max-width: 600px) {
    .header {
        display: flex;
        text-align: center;
    }
    .main-section {
        display: block;
        padding: 20px 10px;
    }
    .header {
        padding: 15px 15px;
    }
    .left-img img {
        margin-bottom: 20px;
    }
    footer {
        padding: 40px 20px;
    }
    .w50 {
        width: 100%;
    }
    .heading-first {
        font-size: 24px;
    }
    .nav-buttons {
        margin-top: 10px;
    }
    .section {
        flex-direction: column;
        text-align: center;
    }
    .login-inner {
        display: block;
    }
    .login-box {
        width: 100%;
    }
    .login-left {
        height: auto;
    }
    .banner {
        display: none;
    }
    .login-left {
        width: 100%;
    }
}
