﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f4f8, #c9d6df);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    color: #333;
}


.register-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.register-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 75px;
    width: 100%;
   
    max-width: 450px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.5s ease-out;
    margin-left: auto;
    margin-right: auto;
}

    .register-container::before {
        content: none;
    }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
}


.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px 15px; 
    background: #f9f9f9;
    color: #333;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.3);
        background: #fff;
        outline: none;
    }

::placeholder {
    color: #aaa;
}


.btn-primary {
    background: #007bff;
    border: none;
    border-radius: 10px; 
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    color: #fff;
    margin-top: 25px; 
}

    .btn-primary:hover {
        background: #0056b3;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
        transform: none;
    }


.btn-link {
    display: block;
    text-align: center;
    color: #007bff;
    text-decoration: none;
    margin-top: 20px;
    font-size: 0.95rem;
    transition: 0.3s;
}

    .btn-link:hover {
        color: #0056b3;
        text-decoration: underline;
    }


.alert {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: none;
}
