/* General Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1A1F71, #007BFF); /* Gradient Background */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff; /* Default text color */
}

/* Page Container */
.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* Space between elements */
    width: 100%;
    max-width: 400px; /* Prevent stretching on wider screens */
}

/* Header */
.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.header-icon {
    width: 50px;
    height: 50px;
}

.main-logo {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures correct proportions */
}


.rounded-logo {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures proper aspect ratio */
}

.header-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Login Container */
.login-container {
    background: #fff;
    color: #333;
    width: 100%;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Input Fields */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.input-group input:focus {
    border-color: #007BFF;
    outline: none;
}

/* Button */
.btn-login {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-login:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Footer */
footer {
    font-size: 14px;
    color: #fff;
    margin-top: 600px;
    text-align: center;
}