@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

body{
    background-color:black;
    color: #e0e0e0;
    

}

/* Update logo styling to be more appropriate size */
.logo {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem; /* Reduced from 2rem */
    font-weight: 700;
    color: #ffffff;
}

/* Add h1 reset within logo */
.logo h1 {
    font-size: inherit; /* Inherit the size from the parent */
    margin: 0;
    padding: 0;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
    background-color: rgba(9, 12, 8, 0.9);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0;
    list-style: none;
}

.btn {
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: #fbfbfb;
    color: #090c08 !important;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* The flex class */
.flex {
    display: flex;
}
  
  /* The space-x-4 class */
.space-x-4 > * + * {
    margin-left: 1rem;
}
/* Login form styles */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
    padding-top: 100px;
}

/* Update login container for more horizontal padding */
.login-container {
    background-color: #121212;
    border-radius: 1rem;
    padding: 2rem 3.5rem;  /* Increased horizontal padding */
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease;
}

.login-container h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    border: 1px solid #333;
    background-color: #1e1e1e;
    color: #e0e0e0;
    border-radius: 0.5rem;
    font-family: "Work Sans", sans-serif;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 0.5rem;
}

.forgot-password {
    font-family: "Work Sans", sans-serif;
    color: #e73700;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #4a9eff;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #e73700;
}

.register-link {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.register-link a {
    color: #e73700;
    text-decoration: none;
}

/* Style for the submit button to center it */
.btn.btn-primary {
    display: block;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 0.8rem;
    background-color: white;
    color: black;
    border: none;
    border-radius: 0.5rem;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn.btn-primary:hover {
    background-color: #e73700;
    color:whitesmoke;
    transform: translateY(-2px);
}

.btn.btn-primary:active {
    transform: translateY(0);
}

/* Register section styling */
.register {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.register a {
    font-family: "Work Sans", sans-serif;
    color: #e73700;
    text-decoration: none;
    margin-left: 0.5rem;
}

.register a:hover {
    text-decoration: underline;
}

/* Input styling with icons */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 10px;
    color: #777;
    font-size: 1.2rem;
}

.toggle-password {
    position: absolute;
    right: 10px;
    color: #777;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Add this to match the existing toggle-password styling */
.toggle-confirm-password {
    position: absolute;
    right: 10px;
    color: #777;
    cursor: pointer;
    font-size: 1.2rem;
}

.option {
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #fbfbfb;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.option:hover {
    color: #e73700;
    transform: scale(1.1);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these styles to your loginFinal.css file */
nav ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
texto-info{
    font-family: "Work Sans", sans-serif;
}

/* Form description text styling */
.form-description {
    font-family: "Work Sans", sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fbfbfb;
    margin-bottom: 1.8rem;
    text-align: center;
    padding: 0 10px;
}

/* Success message styling */
.success-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-icon .material-icons {
    font-size: 60px;
    color: #e73700; /* Match your site's accent color */
}

/* Button group for centered buttons */
.button-group {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Center text in the success message */
#success-message .form-description {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    display: block;
}

/* Make sure the heading is also properly centered */
#success-message h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

/* Fix for success message container centering */
#success-message {
    display: none; /* Start hidden */
}

/* When visible, ensure proper flex display */
#success-message.visible {
    display: flex;
}

/* Better alignment for success message content */
#success-message .login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ensure proper spacing in success message */
#success-message .form-description {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}