:root {
    --primary-blue: #11315E;
    --primary-green: #377b46;
    --bg-color: #BABCB7;
    --text-color: #11315E;
    --border-radius: 6px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: var(--bg-color); 
    color: var(--text-color); 
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Container for centering content */
.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.main-logo {
    max-width: 100%; 
    width: 450px; 
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

h1, h2, h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    font-size: 1.2em; 
    color: var(--text-color); 
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2c6338;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1em;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(17, 49, 94, 0.2);
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}