﻿
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* مسار الصورة - تأكد من صحة المجلد */
    background-image: url('../Images/bg02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* إضافة طبقة تعتيم خفيفة فوق الصورة لجعل النص أوضح */
    position: relative;
}

.register-container {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-title {
    color: #0d6efd;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.btn-register {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
}
