:root {
    --primary-blue: #003d99;
    --dark-blue: #001a4d;
    --teal: #0099cc;
    --bright-green: #ccff00;
    --light-blue: #e6f2ff;
    --gray-light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
}

/* Blue Banner */
.blue-banner {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

/* Main Header */
.main-header {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emblem {
    height: 70px;
}

.header-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.header-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.header-right {
    text-align: right;
}

.i4c-logo {
    height: 80px;
}

/* Main Container */
.container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

.left-section {
    flex: 1;
}

.right-section {
    flex: 1;
}

/* Vision/Mission Boxes */
.box {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box-header {
    background-color: var(--bright-green);
    color: #000;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    padding-left: 40px;
}

.box-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background-color: var(--bright-green);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.vision-box .box-content {
    background-color: var(--dark-blue);
    color: white;
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.mission-box .box-content {
    background-color: var(--teal);
    color: white;
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
}

/* Login Card */
.login-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Role Selection */
.role-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.role-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.role-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(0, 61, 153, 0.2);
}

/* Continue Button */
.btn-continue {
    width: 100%;
    padding: 12px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.btn-continue:hover {
    background-color: #0052a3;
}

/* Forgot Password Link */
.forgot-password {
    display: block;
    text-align: right;
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

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

/* Error Message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    font-size: 14px;
}

/* Header Styles */
.header-banner {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-right .emblem {
    height: 50px;
}

.header-right h1 {
    font-size: 20px;
    font-weight: bold;
}

/* Vision and Mission Sections */
.vision-mission {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.vision, .mission {
    flex: 1;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    color: white;
}

.vision {
    background-color: #002060;
}

.mission {
    background-color: #0073e6;
}

.vision h2, .mission h2 {
    color: #00ff00;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Login Section */
.login-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    margin: 20px auto;
    text-align: center;
}

.login-section h2 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 20px;
}

.role-selection {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.role-selection label {
    font-size: 14px;
    color: #003366;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-login {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

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

.forgot-password {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
}

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

