/* বেসিক রিসেট এবং ফন্ট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* রেজিস্ট্রেশন বক্সের ডিজাইন */
.register-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.register-container h2 {
    color: #333;
    margin-bottom: 5px;
    text-align: center;
}

.register-container p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

/* ইনপুট ফিল্ডের স্টাইল */
.input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    color: #444;
    margin-bottom: 5px;
    font-weight: 600;
}

.input-group input, .input-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

/* ইনপুটে ক্লিক করলে বর্ডার কালার চেঞ্জ হবে */
.input-group input:focus, .input-group select:focus {
    border-color: #2ecc71; /* পাঠশালার জন্য সবুজ থিম */
}

/* এক লাইনে দুইটা ফিল্ড দেখানোর জন্য (Batch & Group) */
.row {
    display: flex;
    gap: 15px;
}

.row .input-group {
    flex: 1;
}

/* বাটনের স্টাইল */
.btn-register {
    width: 100%;
    padding: 12px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

.btn-register:hover {
    background-color: #27ae60;
}

.login-link {
    margin-top: 20px;
    font-size: 14px;
}

.login-link a {
    color: #2ecc71;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}