﻿/* Center the registration container */

.project-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #2c3e50;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.register-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 20px;
}

/* Card-style container for the form */
.register-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

    .register-card:hover {
        transform: translateY(-5px);
    }

    /* Heading */
    .register-card h3 {
        font-weight: 600;
        margin-bottom: 30px;
        color: #333;
        text-align: center;
    }

/* Stylish inputs */
.custom-input {
    margin-bottom: 20px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .custom-input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    }

/* Primary button */
button.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    button.btn-primary:hover {
        background-color: #5a67d8;
        transform: scale(1.02);
    }
.register-card a {
    color: #667eea;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

    .register-card a:hover {
        color: #5a67d8;
        text-decoration: underline;
    }
