.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.register-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    animation: slideUp 0.5s ease-out;
}

.register-box h2 {
    font-size: 2rem;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
}

.register-box .btn {
    width: 100%;
    margin-top: 20px;
}

.register-box p {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.register-box a {
    color: #007bff;
    text-decoration: none;
}