body {
    background-color: #1a1a2e;
    color: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 40px 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 250px;
    height: auto;
}

.form-container {
    background-color: #2a2a3e;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c0c0c0;
    font-weight: 500;
}

.form-control {
    background-color: #1a1a2e;
    border: 1px solid #4a4a5e;
    color: #f0f2f5;
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%;
}

.form-control::placeholder {
    color: #8a8a9e;
}

.form-control:focus {
    background-color: #1a1a2e;
    color: #f0f2f5;
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    outline: none;
}

.btn-primary {
    background-color: #6c63ff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #5a54d8;
}

.footer-link {
    margin-top: 2rem;
    color: #c0c0c0;
}

.footer-link a {
    color: #6c63ff;
    text-decoration: none;
    font-weight: 600;
}

.footer-link a:hover {
    text-decoration: underline;
}

.alert {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-check {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-check-label {
    color: #c0c0c0;
}

.form-check-label a {
    color: #6c63ff;
    text-decoration: underline;
}

.form-check-label a:hover {
    color: #5a54d8;
}

.form-check-input {
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.or-separator {
    text-align: center;
    margin: 1.5rem 0;
    color: #8a8a9e;
    position: relative;
}

.or-separator::before,
.or-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #4a4a5e;
}

.or-separator::before {
    left: 0;
}

.or-separator::after {
    right: 0;
}

.btn-google {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #333333;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background-color: #f5f5f5;
    border-color: #cccccc;
}

.btn-google svg {
    margin-right: 8px;
}