/* Reset some default styles for consistent design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main container for the form */
.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* Logo styling */
.logo h1 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 30px;
}

/* Style for blue text */
.blue-text {
    color: #3b82f6;
}

/* Style for the black box */
.black-box {
    background-color: #333;
    color: white;
    padding: 0 8px;
    border-radius: 4px;
}

/* Title styling */
h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Form label styling */
label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-align: left;
    margin-bottom: 8px;
    display: block;
}

/* Input and select fields */
input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    border-color: #3b82f6;
    outline: none;
}

/* Button styling */
button[type="submit"] {
    width: 100%;
    padding: 12px 15px;
    background-color: #3b82f6;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2563eb;
}

/* Show password checkbox and label */
.show-password-container {
    text-align: left;
    margin-bottom: 20px;
}

.show-password-container input[type="checkbox"] {
    margin-right: 8px;
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
    .container {
        padding: 30px;
    }

    .logo h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    label {
        font-size: 12px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    select {
        font-size: 14px;
    }

    button[type="submit"] {
        font-size: 14px;
    }
}
