body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    margin: 0;
    padding: 0;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

    .register-box:hover {
        transform: translateY(-2px);
    }

.title {
    font-weight: 700;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
}

label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
}

.btn-gradient {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}


    .btn-gradient:hover {
        background: linear-gradient(90deg, #0056b3, #009acd);
        transform: translateY(-1px);
    }

.btn-gradient-login {
    background: linear-gradient(to right, #28a745, #218838);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient-login:hover {
    background: linear-gradient(to right, #218838, #1e7e34);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    transform: scale(1.05);
} 
    
.login-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

    .login-link:hover {
        text-decoration: underline;
    }


    