* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.background {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 10, 0.8), rgba(0, 0, 10, 0.8)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.left-content {
    color: white;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 5rem;
    margin-bottom: 6rem;
}

.tagline h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.tagline p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.dots {
    display: flex;
    gap: 10px;
    margin-top: 3rem;
}

.dot {
    width: 50px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.dot.active {
    background-color: white;
}


.form-container {
    background-color: white;
    border-radius: 20px 20px 0 0;
    width: 500px;
    max-width: 90%;
    padding: 40px 50px;
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 70vh;
    overflow-y: auto;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.welcome-text {
    font-size: 0.9rem;
    color: #666;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #666;
    display: block;
}

input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}

input:focus {
    outline: none;
    border-color: #999;
}

.password-input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.continue-btn {
    width: 100%;
    padding: 15px;
    background-color: #111;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.continue-btn:hover {
    background-color: #333;
}


.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 10px;
    color: #666;
    font-size: 0.9rem;
}


.google-btn {
    width: 100%;
    padding: 12px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.google-btn img {
    width: 20px;
    height: 20px;
}


.register-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.register-link a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}


@media (max-width: 1200px) {
    .form-container {
        width: 600px;
        right: 50%;
        transform: translateX(50%);
    }

    .left-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        top: 25%;
    }
}

@media (max-width: 768px) {
    .form-container {
        width: 100%;
        max-width: 100%;
        right: 0;
        transform: none;
        padding: 30px;
        height: 65vh;
    }

    .left-content {
        width: 90%;
        top: 15%;
    }

    .logo {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .tagline h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 20px;
        height: 70vh;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .logo {
        font-size: 3rem;
    }

    .left-content {
        top: 10%;
    }
}