/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styles */
body {
    background-color: #121212; /* Dark background */
    color: #f5f5f5; /* Light text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    padding: 20px; /* Add padding for smaller screens */
}

/* Container */
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Login Box */
.login-box {
    background-color: #1e1e1e; /* Dark box background */
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Softer shadow */
}

/* Logo Styles */
.logo {
    width: 150px;
    height: 150px;
    margin-bottom: 25px;
}

/* Heading */
h2 {
    font-size: 24px;
    color: #f5f5f5; /* Light heading color */
    margin-bottom: 30px;
}

/* Input Fields */
.input-box {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    color: #f5f5f5; /* Light label color */
    margin-bottom: 5px;
    margin-left: 10px;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="file"],
select {
    width: 100%;
    padding: 10px;
    background-color: #333; /* Dark input background */
    border: 1px solid #555; /* Dark border */
    color: #f5f5f5; /* Light text */
    border-radius: 55px;
    font-size: 14px;
}

/* Button Styles */
button {
    width: 100%;
    padding: 10px;
    background-color: #007bff; /* Bright blue button */
    color: white;
    border: none;
    border-radius: 55px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .login-box {
        padding: 20px;
    }

    /* Smaller logo */
    .logo {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    /* Smaller text input */
    input[type="text"],
    input[type="password"],
    input[type="tel"],
    input[type="email"],
    input[type="file"],
    select {
        font-size: 12px;
        padding: 8px;
    }

    /* Smaller button */
    button {
        padding: 8px;
        font-size: 14px;
    }
}

/* Media Queries for larger devices */
@media (min-width: 1024px) {
    .login-box {
        max-width: 500px;
        padding: 40px;
    }

    .logo {
        width: 180px;
        height: 180px;
        margin-bottom: 30px;
    }

    /* Larger text input */
    input[type="text"],
    input[type="password"],
    input[type="tel"],
    input[type="email"],
    input[type="file"],
    select {
        font-size: 16px;
        padding: 12px;
    }

    /* Larger button */
    button {
        padding: 12px;
        font-size: 18px;
    }
}
