﻿.welcome-section {
    background-image: url('../images/Screenshot .png');
    background-size: cover;
    background-position: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
}

    .welcome-section h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .welcome-section p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .welcome-section .illustration {
        max-width: 100%;
        width: 700px;
    }

.login-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #222;
    padding: 20px;
}

    .login-section h1 {
        font-size: 2rem;
        font-weight: bold;
    }

    .login-section form {
        width: 100%;
        max-width: 400px;
    }

.form-control {
    background-color: #333;
    color: #fff;
    border: 1px solid #720b8b;
}

    .form-control:focus {
        background-color: #333;
        color: #fff;
        border-color: #6c63ff;
        box-shadow: none;
    }

    .form-control::placeholder {
        color: #6c6161;
    }

.btn-login {
    background-color: #9440b7;
    border: none;
}

.signup-link {
    color: #6c63ff;
    text-decoration: none;
}

    .signup-link:hover {
        text-decoration: underline;
    }

.signup-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

    .signup-container .signup-btn {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 5px 15px;
        border-radius: 5px;
    }

        .signup-container .signup-btn:hover {
            background-color: #444;
        }
