* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

/* Left Side - Login */
.login-section {
    width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-section:hover {
    transform: scale(0.99);
}

.box-login{
    width: 50%;
    line-height: 45px;
}


.brand {
    font-size: 50px;
    font-family: 'Caveat';
    position: relative;
    right: 277px;
    bottom: 143px;
    font-weight: 400;
    color: #fff;
}

h2 {
    text-align: center;
    font-family: 'Cormorant Unicase';
    font-size: 40px;
    font-weight: 300;
    color: #000;
}

p {
    font-size: 24px;
    color: #555;
    text-align: center;
    font-family: 'Cormorant Unicase';
    width: 100%;
}


.input-field {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.input-field input {
    width: 100%;
    padding: 10px;
    padding-left: 35px;
    border: none;
    border-bottom: 1px solid #999;
    outline: none;
    font-size: 16px;
}

.input-field i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.input-field .toggle-password {
    right: 10px;
    left: auto;
    cursor: pointer;
}

.forgot {
    font-size: 18px;
    color: #777;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 10px 0;
    font-family: 'Cormorant Unicase';
}

.dnt{
    font-size: 18px;
    font-family: 'Cormorant Unicase';
}
.signup-text{
    color: #777;
    font-family: 'Cormorant Unicase';
    font-size: 18px;
}

.login-btn {
    background: #e28b96;
    color: white;
    padding: 10px 20px;
    width: 100%;
    height: 59px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    margin-top: 10px;
    border-radius: 5px;
    font-family: 'Cormorant Unicase';
}
.login-btn:hover {
    background: #e99ea8;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 16px;
    color: #333;
    font-family: 'Cormorant Unicase';
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #ccc;
    margin: 25px;
}


.social-login {
    text-align: center;
    margin-top: 10px;
}
/*
.social-icons i {
    font-size: 24px;
    margin: 10px;
    cursor: pointer;
} */

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.social-icons img {
    width: 35px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}


/* Right Side - Create */
.signup-section {
    flex: 1;
    width: 50%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/home_background.jpg')  no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.5s ease-in-out;
}


.signup-section:hover {
    transform: scale(0.99);
}

.hello{
    font-family: 'Cormorant Unicase';
    font-weight: 700;
    color: #fff;
}
.textfor2{
    color: #fff;
    font-family: 'Cormorant Unicase';
    line-height: 1;
    font-size: 24px;
    font-weight: 400;
}

.distance{
    line-height: 130px;
}

.signup-btn {
    background: transparent;
    border: 3px solid #e28b96;
    color: white;
    padding: 1px 35px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 550;
    font-family: 'Cormorant Unicase', serif;
}

.signup-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .login-section,
    .signup-section {
        width: 100%;

    }

    .signup-section {
        background-size: cover;

    }
}

