.login-form-container h2 {
color: #2c5f2d;
font-size: 18px;
font-weight: bold;
margin: 0 0 5px 0;
text-align: left;
}
.login-form-container h3 {
color: #2c5f2d;
font-size: 18px;
font-weight: bold;
margin: 0 0 25px 0;
text-align: left;
}
.login-form {
margin-top: 20px;
}
.login-message {
padding: 12px 15px;
margin-bottom: 20px;
border-radius: 5px;
text-align: left;
font-weight: 500;
font-size: 14px;
}
.login-message.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.login-message-error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
color: #333;
font-weight: 500;
}
.tel-label {
display: flex !important;
flex-direction: row;
padding: auto;
gap: 10px;
position: relative;
}
.tel-label img {
margin-top: 3px;
cursor: pointer;
position: relative;
} .tel-label .info-tooltip {
position: absolute;
top: -10px;
left: calc(100% + 10px);
background-color: #fcf9f5;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 12px 16px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 1000;
opacity: 0;
visibility: hidden;
transform: translateY(5px);
transition: all 0.3s ease;
min-width: 280px;
max-width: 320px;
font-size: 14px;
line-height: 1.4;
color: #333;
font-weight: normal;
}
.tel-label .info-tooltip::before {
content: "";
position: absolute;
top: 15px;
left: -6px;
width: 12px;
height: 12px;
background-color: #fcf9f5;
border: 1px solid #e0e0e0;
border-right: none;
border-bottom: none;
transform: rotate(-45deg);
z-index: -1;
}
.tel-label:hover .info-tooltip {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.phone-info {
display: flex;
align-items: center;
margin-bottom: 8px;
font-size: 12px;
color: #666;
}
.info-icon {
margin-right: 8px;
color: #2c5f2d;
font-weight: bold;
}
.form-group input[type="tel"],
.form-group input[type="password"] {
width: 100%;
min-width: 240px;
padding: 12px 16px !important;
border: 2px solid #ddd;
border-radius: 8px !important;
font-size: 14px;
box-sizing: border-box;
}
.form-group input::placeholder {
font-family: Pontiac;
font-size: 16px;
line-height: 18px;
letter-spacing: 0%;
font-weight: 500;
}
.form-group input:focus {
outline: none;
border-color: #2c5f2d;
}
.checkbox-group {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.checkbox-label {
display: flex !important;
align-items: center;
justify-content: center;
cursor: pointer;
margin-bottom: 0 !important;
font-size: 14px;
color: #333;
}
.toggle-switch {
position: relative;
width: 50px;
height: 24px;
appearance: none;
background: #e0e0e0;
border-radius: 24px;
outline: none;
cursor: pointer;
margin-right: 8px;
transition: background 0.3s;
border: none;
}
.toggle-switch:checked {
background: #2c5f2d;
}
.toggle-switch::before {
content: "";
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
background: white;
top: 2px;
left: 2px;
transition: 0.3s;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.toggle-switch:checked::before {
left: 28px;
}
.login-button {
width: auto;
background: #2c5f2d;
color: white !important;
padding: 12px 20px;
border: none;
border-radius: 25px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
margin: 20px 0;
margin-top: 0;
}
.login-button:hover {
background-color: #0e352f !important;
color: white !important;
}
.form-links {
display: flex;
gap: 24px;
text-decoration: underline;
}
.form-links a {
color: #2c5f2d;
text-decoration: underline;
font-size: 13px;
}
.form-links a:hover {
text-decoration: none;
}