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

#txt {
    font-family: "Bodoni MT", "Didot", "Times New Roman", serif;
    color: #4c4c4c;
}

body {
    min-height: 100vh;
}

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

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

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

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

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.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;
    margin-top: 4rem;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #666;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-google {
    background: #fff;
    color: #000000;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-google img {
    width: 18px;
    height: 18px;
}

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

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

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

    .menu-icon {
        display: block;
    }

    .top-nav {
        display: none;
    }

    .logo {
        display: none;
    }

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

    .btn {
        max-width: none;
    }

    h1 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }
}