/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    background-color: #0D1117; /* Dark background */
    color: #C9D1D9; /* Light gray text for better contrast */
    font-family: 'Roboto', sans-serif; /* Modern font */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 70px; /* Adjusted logo size for a cleaner look */
}

.logout-button {
    background-color: #FF6F61; /* Soft orange color */
    color: white;
    border: none;
    border-radius: 25px; /* Rounded button */
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.logout-button:hover {
    background-color: #E03A2D; /* Darker orange on hover */
    transform: scale(1.05); /* Slight scale effect on hover */
}

.container {
    width: 90%;
    max-width: 400px; /* Reduced width for a more compact design */
    padding: 30px;
    border-radius: 15px; /* Rounded corners */
    background-color: #161B22; /* Slightly lighter than the body */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
}

h1, h2 {
    text-align: center;
    color: #FF6F61; /* Soft orange for headings */
    margin-bottom: 20px; /* Space between headings and other elements */
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-top: 10px;
    font-size: 14px; /* Increased font size for readability */
    color: #B0BEC5; /* Lighter gray text for labels */
}

input {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #FF6F61; /* Match border with button color */
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter input background */
    color: #C9D1D9; /* Light gray text for input */
    transition: border-color 0.3s; /* Smooth transition for border color */
}

input:focus {
    border-color: #FF3D00; /* Change border color on focus */
    outline: none; /* Remove outline */
}

button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #FF6F61; /* Match button color */
    color: white;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #E03A2D; /* Darker shade for hover effect */
    transform: scale(1.05); /* Slight scale effect on hover */
}

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background for cookie banner */
    color: #C9D1D9; /* Light gray text for cookie banner */
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

#cookieBanner a {
    color: #FF6F61; /* Soft orange links */
}

#acceptCookies {
    margin-left: 10px;
    background-color: #FFFFFF; /* White button */
    color: black;
    border: none;
    border-radius: 5px; /* Rounded corners for button */
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition */
}

#acceptCookies:hover {
    background-color: #F0F0F0; /* Light gray on hover */
}

.forgot-password {
    margin-top: 10px; 
    color: #66ccff; /* Light blue color for links */

}

.errorMessage {
    color: #FF3D00; /* Error message styling */
    text-align: center; /* Centered error message */
}
