body {
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #8ec5fc;
        box-shadow: 0 0 15px rgba(142, 197, 252, 0.2);
    }

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.btn-register {
    background: linear-gradient(45deg, #8ec5fc, #e0c3fc);
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-register:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(142, 197, 252, 0.4);
    }

.title {
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.text-danger {
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.password-toggle {
    cursor: pointer;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

    .login-link a {
        color: #8ec5fc;
        text-decoration: none;
        font-weight: 500;
    }

        .login-link a:hover {
            text-decoration: underline;
        }
