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

/* Logo specific font styling */
.logo {
    font-family: "Bodoni MT", "Didot", "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-stretch: expanded;
    letter-spacing: -4.5px;
}

/* Rest of the styles remain the same */
body {
    min-height: 100vh;
}

.split-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-side {
    width: 50%;
    padding: 2rem;
    padding-top: 0%;
    display: flex;
    flex-direction: column;
}

.right-side {
    width: 50%;
    background: url('images/signup.jpg') center/cover;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.top-nav {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
}

.top-nav a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
}

.login-content {
    max-width: 400px;
    width: 100%;
}

.login {
    font-family: "Bodoni MT", "Didot", "Times New Roman", serif;
    font-size: 1.5rem;
    color: #595959;
    margin-bottom: 30px;
}

h1 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 0.3rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-bottom-color: #000;
}

.forgot-password {
    display: block;
    margin-bottom: 15px;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
}

/* Error message styling */
.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.btn-google {
    background: #fff;
    color: #000000;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    margin: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-google:hover {
    background: #000;
    color: #fff;
}

.forgot-password:hover {
    color: #000;
}

#btn {
    width: 100%;
    padding: 1rem;
    margin: 10px;
    border: 1px solid #000;
    background: #ffffff;
    color: #000;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.alert {
    color: red;
}

#btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .left-side {
        width: 100%;
        padding: 1rem;
        order: 2;
    }

    .right-side {
        width: 100%;
        height: 50vh;
        order: 1;
        display: block;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 2rem;
        left: 2rem;
    }

    .top-nav {
        display: none;
    }

    .logo {
        text-align: center;
        margin: 4rem 0 2rem;
        font-size: 2rem;
    }

    .login-content {
        margin: 0 auto;
        padding: 0 1rem;
    }
}