/* General Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(180deg, #fbfbfc 0%, #DAE0EE 100%);
    margin: 0;
    padding: 0;
}

body.page-auth {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100vh;
    background: linear-gradient(180deg, #fbfbfc 0%, #DAE0EE 100%);
    margin: 0;
    padding: 0;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #000;
}
.logo img {
    width: 130px; /* Adjust this value */
    height: 130px; /* Adjust this value */
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}
/* Main Container for the Login Form */
.container {
    display: flex;
    width: 900px;  
    height: 550px;  
    background-color: #bbf1ea; /* White background for the card effect */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* Ensures rounded corners are respected */
}

/* Left Panel Styling (Dark Blue Side) */
.left-panel {
    flex: 1; /* Takes equal space */
    background-color: #27374D; /* Dark blue color */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align text to the left */
    padding: 40px;
    text-align: left;
}

.left-panel h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.left-panel p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.left-panel .register-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.left-panel .register-button:hover {
    background-color: #fff;
    color: #27374D;
}

/* Right Panel Styling (Light Blue Side) */
.right-panel {
    flex: 1; /* Takes equal space */
    background-color: #dffffb; /* Light blue color */
    color: #27374D; /* Dark blue text for contrast */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.right-panel h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
}

.right-panel form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    position: relative;
    width: 70%; /* Adjust input width */
    margin-bottom: 25px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 50px; /* Adjust padding for icon */
    border: none;
    border-radius: 5px;
    background-color: #E6E6E6; /* Lighter background for inputs */
    font-size: 16px;
    color: #333;
    outline: none;
}

.input-group input::placeholder {
    color: #999;
}

.right-panel .login-button {
    background-color: #27374D; /* Dark blue button */
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.right-panel .login-button:hover {
    background-color: #3c506e; /* Slightly lighter blue on hover */
}

/* Link para área administrativa */
.admin-link {
    text-align: center;
    margin-top: 15px;
}

.admin-access {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border: 1px solid #667eea;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.admin-access:hover {
    background-color: #667eea;
    color: white;
    transform: translateY(-1px);
}

.admin-access i {
    margin-right: 5px;
}

.alert {
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 16px;
    border-radius: 4px;
    background: #ffeaea;
    color: #a94442;
    border: 1px solid #f5c6cb;
}
.confirm {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    padding: 10px 0;
    background: #ffeaea;
    color: #066103;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    z-index: 9999;
    border-bottom: 2px solid #f5c6cb;
}