
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
     font-weight: 400; 
}

body, html {
    height: 100%;
}

/* الخلفية */
.background-overlay {
    background-image: url('../image/background.png'); /* صورة جبال ثلجية مشابهة */
    background-size: cover;
    background-position: center;
    height: 105vh;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
    direction: ltr;
}

.container {
    max-width: 450px;
    width: 100%;
}

/* النصوص العلوية */
.main-title {
    color: #284162;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
   -webkit-text-stroke: 0.2px #fff;
}

.description, .instruction {
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
    -webkit-text-stroke: 0.2px #fff;
    text-align: left; /* جعل النص لليسار كما في الصورة */
}

/* البطاقة البيضاء */
.card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin: 60px 50px 0;
}

.card-body {
    padding: 50px 20px;
}

.button-group {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.btn {
    background-color: #26374A;
    color: white;
    border: none;
    padding: 10px 8px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    /* flex: 1; */
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    text-decoration: none;
}

.btn:hover {
    background-color: #34495e;
}

/* أسفل البطاقة (الرمادي) */
.card-footer {
    background-color: #e6e6e6;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
}

.links {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.links a {
    color: #333;
    text-decoration: underline;
    font-size: 14px;
    margin-bottom: 3px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.flag {
    color: red;
}