body {
    font-family: Arial, sans-serif;
    background: #3c86ec;
    margin: 0;
}

.container {
    width: 400px;
    margin: 60px auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.container {
    margin-top: 30px;
}

h1 {
    text-align: center;
    color: #003366;
}

h2 {
    text-align: center;
    color: #444;
}

label {
    margin-top: 12px;
    display: block;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #aaa;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #0055aa;
}

a {
    color: #003366;
}

.main_header {
    background: #7db3e8;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    border-bottom: 3px solid #003366;
}

.main_header h1 {
    margin: 0;
    color: #003366;
    font-size: 22px;
    font-weight: bold;
}

.header_logo {
    height: 100px; /* Adjust size as needed */
    width: auto;
    object-fit: contain;
}

.image_preview {
    margin-top: 15px;
    width: 200px;
    height: 200px;
    border: 2px dashed #003366;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f0f4fa;
}

.image_preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; 
}

.password_row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.password_row {
    flex: 1;
}