* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    background-color: #ffffff;
}

.container {
    display: flex;
    width: 100%;
    margin: auto;
}

.login-section {
    flex: 1;
    padding: 2rem 4rem;
    max-width: 600px;
    flex-basis: 50%;
    height: 100vh;
    display: flex;
}

.flex-column {
    flex-direction: column
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.logo-forget{
    margin-bottom: 30px;
}
.mt-auto {
    margin-top: auto;
}

.logo img {
    width: 32px;
    height: 32px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e1e1e;
}

.account-prompt {
    margin-bottom: 2rem;
    color: #6c757d;
}

.create-account {
    color: #0d6efd;
    text-decoration: none;
    margin-left: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
}

.forgot-password {
    color: #0d6efd;
    text-decoration: none;
}

.sign-in-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #d85151;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease-in;
}
.sign-in-btn:hover{
    background-color: #dc3545;
}

.divider {
    text-align: center;
    position: relative;
    margin: 2rem 0;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background-color: #ffffff;
    padding: 0 1rem;
    color: #6c757d;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.social-login {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.footer {
    text-align: center;
}

.help-link {
    color: #0d6efd;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.copyright {
    color: #6c757d;
    font-size: 0.875rem;
}

.image-section {
    flex: 1;
    position: relative;
    display: none;
    height: 100vh;
    padding: 2rem;
}

.img-side-bg {
    background-color: #ecf2f2;
    height: 100%;
    border-radius: 50px;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customize-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.customize-btn img {
    width: 16px;
    height: 16px;
}

@media (min-width: 1024px) {
    .image-section {
        display: block;
    }

    .login-section {
        padding: 2rem 4rem;
    }
}

@media (max-width: 1023px) {
    .container {
        justify-content: center;
    }

    .login-section {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .social-login {
        grid-template-columns: 1fr;
    }

    .login-section {
        padding: 1.5rem;
    }
}

/*Signup*/
.signup-side-bg {
    padding: 3rem;
    text-align: center;
}
.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-basis {
    flex-basis: 50%;
}
.flex-stretch {
    justify-content: stretch;
}
.p-5 {
    padding: 5px;
}
.mb-3 {
    margin-bottom: 3px;
}
.mb-3rem {
    margin-bottom: 3rem;
}
.blocks {
    flex-basis: 50%;
    padding: 5px;
}
.inner-block {
    background-color: #f6f9f9;
    border-radius: 10px;
    padding: 8px;
    margin: 5px;
    text-align: center;
    height: 100%;
}
.circle {
    margin: auto;
    width: 64px;
    height: 64px;
    background-color: #fff;
    font-size: 28px;
    border-radius: 50%;
    color: #3d7a81;
    padding: 11px;
}
.inner-block h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0.7rem;
}
a {
    color: #333d4c !important;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

@media (max-width: 1150px) {
    .signup-side-bg {
        padding: 1rem;
        text-align: center;
    }
}
@media (max-width: 500px) {
   
}