﻿/* login.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #E1B14A; /* Border color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 700px;
    width: 100%;
    min-height: 400px; /* Set minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.header {
    margin-bottom: 10px; /* Reduced margin */
    flex-shrink: 0; /* Prevent shrinking */
}


.uae-logo {
    margin-bottom: 20px;
    width: 170%;
    height: auto;
}


.uae-text {
    display: flex;
    flex-direction: column;
    align-items: center;
   
}
.uae-text {
    font-size: 16px;
    color: #555;
    font-weight: bold;
}


.ministry-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 0px;
}

.message {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
    /*flex-grow: 1;*/ /* Take more space if necessary */
}

.login-button {
    background-color: #080808;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: auto; /* Set width to auto for centering */
    margin: 10px auto; /* Center the button horizontally */
    max-width: 300px; /* Optionally limit the width */
}

.description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-shrink: 0; /* Prevent shrinking */
}

.create-account {
    font-size: 14px;
    color: #0070ba;
    text-decoration: none;
    flex-shrink: 0; /* Prevent shrinking */
}

/* Responsive Design with Media Queries */
@media (max-width: 768px) {
    .login-container {
        padding: 30px;
        min-height: 350px;
    }

    .uae-text {
        font-size: 16px;
    }

    .ministry-text {
        font-size: 14px;
    }

    .login-button {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 80%;
    }

    .description {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 20px;
        max-width: 90%;
        min-height: 300px;
    }

    .uae-text {
        font-size: 14px;
    }

    .ministry-text {
        font-size: 12px;
    }

    .login-button {
        font-size: 14px;
        padding: 10px 15px;
        max-width: 90%; /* Button width for smaller screens */
    }

    .description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .create-account {
        font-size: 12px;
    }
}
