
body {
    background-color: #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#container {
    background: #ffffff;
    border-top: 6px solid #7DB43C;
	border-bottom: 6px solid #E56C00;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
}

.logo-container {
    text-align: center;
    margin-bottom: 25px;
}

.logo {
    max-width: 80%;
    height: auto;
}

.info {
    text-align: center;
    margin-bottom: 30px;
}

.info h2 {
    color: #0f0f0f;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
}

.info p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-link {
	color: #0f0f0f;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
    transition: color 0.2s ease-in-out;
}

.contact-link:hover {
    color: #AF191E;
    text-decoration: underline;
}

.contact-link:active {
    color: #AF191E;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #7DB43C;
    outline: none;
    box-shadow: 0 0 5px rgba(125, 180, 60, 0.3);
}

.form-actions {
    margin-top: 30px;
}

input[type="submit"] {
    background-color: #7DB43C;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

input[type="submit"]:hover {
    background-color: #E56C00;
}

.note {
    color: #AF191E; 
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    font-size: 14px;
}