@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');


/* General Body Styles */
body {
    background: linear-gradient(135deg, #1e2f5e, #2856a6);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

/* Container Styles */
.login-container {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
}

/* Logo Styles */
.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
    border: 2px solid #2856a6;
    background-color: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Input Fields */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    color: #555;
    background-color: #f9f9f9;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]::placeholder, input[type="password"]::placeholder {
    color: #aaa;
    font-style: italic;
}

input[type="text"]:focus, input[type="password"]:focus {
    outline: none;
    border-color: #2856a6;
    box-shadow: 0 0 8px rgba(66, 133, 244, 0.6);
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.checkbox-container input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #2856a6;
    cursor: pointer;
}

/* Buttons */
.login-button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    background-color: #2856a6;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 5px 15px rgba(40, 86, 166, 0.3);
}

.login-button:hover {
    background-color: #1e4488;
    box-shadow: 0px 8px 20px rgba(40, 86, 166, 0.4);
}

/* Links */
.links-container {
    margin-top: 25px;
    font-size: 14px;
    text-align: center;
}

.links-container a {
    color: #2856a6;
    text-decoration: none;
    margin: 0 8px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.links-container a:hover {
    color: #1e4488;
    text-shadow: 0px 0px 5px rgba(30, 68, 136, 0.5);
    text-decoration: underline;
}

/* Error Message */
.error-message {
    background-color: #ffe6e6;
    color: #a94442;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #ffb3b3;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0px 3px 10px rgba(255, 102, 102, 0.3);
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}

.footer a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
    pointer-events: auto;
    /* Ensure it's clickable */
}

.footer a:hover {
    text-decoration: none;
    /* Prevent underline */
    color: #666;
    /* Prevent color change */
}
