* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f9f9f9;
}

.header {
    background-color: #4a4a4a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.system-name {
    text-align: left;
}

.system-name span {
    color: yellow;
    font-size: 24px;
    font-weight: bold;
}

.small-text {
    font-size: 12px;
    margin-top: 5px;
}

.candidate-info {
    text-align: right;
}

.candidate-info span {
    color: yellow;
    font-size: 24px;
    font-weight: bold;
}

.candidate-photo {
    margin-top: 10px;
}

.candidate-photo img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
}

.login-box {
    background-color: white;
    padding: 40px; /* Increased padding */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px; /* Increased width */
}

.login-box h3 {
    margin-bottom: 30px; /* Added more spacing */
    font-size: 24px; /* Increased font size */
}

.input-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* Increased margin for spacing */
}

.input-container i {
    margin-right: 10px;
}

input {
    width: 250px; /* Increased width */
    padding: 12px; /* Increased padding */
    font-size: 16px; /* Increased font size */
    border-radius: 5px;
    border: 1px solid #ddd;
}

button {
    background-color: #3498db;
    color: white;
    padding: 12px 30px; /* Increased padding */
    font-size: 18px; /* Increased font size */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #2980b9;
}
