@font-face {
    font-family: 'Goudy';
    src: url('resources/fonts/Goudy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ROBOTO */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* Login Form Section */
.login-form.text-center {
    text-align: center; 
}

/* Specific styles for the email label to override centering */
.login-form .text-label {
    text-align: left; 
    display: block; 
    margin: 0 auto;
    font-family: 'Roboto Condensed', sans-serif;
}

.login-section {
    margin: 40px;
    margin-top: 100px;
    margin-bottom: 200px;
}

.login-form {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    width: 600px; /* Adjusted width to make the container wider */
    outline: 1px solid;
    outline-color: #fcb900;
    max-width: 100%; /* Ensures the form is responsive on smaller screens */
}

.login-form .form-control {
    width: 100%; 
    padding: 10px; 
    border-radius: 5px; 
    border: 1px solid #ccc;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Password Input Container */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container .form-control {
    padding-right: 40px; /* Space for the toggle button */
}

.password-toggle {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #6c757d; /* Optional: Match your theme color */
}

.password-toggle i {
    font-size: 18px; /* Adjust size as needed */
}

.password-toggle:hover {
    color: #000; /* Optional: Change color on hover */
}

.login-form .btn-login {
   background-color: #f7c42d;
    border: none;
    width: 34%;
    padding: 6px;
    font-size: 1rem; /* Adjust as needed */
    font-weight: normal; /* Explicitly set to normal */
    color: #000000;
    border-radius: 25px;
    font-family: 'Goudy', serif !important;  
}

.login-form .btn-login:hover {
    background-color: #e6b023;
}

/* Style for the "Login" and "Register" links */
.login-section p a {
    color: #f7c42d; /* Set text color to yellow */
    text-decoration: none; /* Remove underline by default */
    font-family: 'Roboto Condensed', sans-serif;
}

.login-section p a:hover {
    color: #f7c42d; /* Slightly darker yellow on hover */
    text-decoration: underline; /* Optional underline on hover */
}

p {
    font-family: 'Roboto Condensed', sans-serif;
}
