/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f4f7;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Container styling */
.container {
    background-color: #ffffff;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #0078d4; /* Azure blue accent */
}

/* Logo styling */
.logo {
    display: flex;
    justify-content: flex-start;  /* Align logo to the left */
    margin-bottom: 20px;
}

.logo img {
    width: 125px;  /* 50% smaller than 150px */
    height: auto;
}

/* Header styling */
h1 {
    color: #0078d4;
    font-size: 1.75em;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Form element styling */
form label {
    display: block;
    color: #555;
    margin: 12px 0 5px;
    font-weight: 500;
    text-align: left;
}

form input[type="text"],
form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    color: #333;
    background-color: #fafbfc;
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form select:focus {
    border-color: #0078d4; /* Azure blue focus */
    outline: none;
}

/* Fullscreen checkbox styling */
form input[type="checkbox"] {
    margin: 10px 0;
}

/* Submit button styling */
form button {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    background-color: #0078d4; /* Azure blue */
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px; /* Adds space between the inputs and button */
}

form button:hover {
    background-color: #005a9e; /* Darker blue on hover */
}

form button:focus {
    outline: none;
}

/* Placeholder styling */
form input[type="text"]::placeholder {
    color: #bbb;
}

form select {
    color: #333;
}
