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

body {
    font-family: 'Arial', sans-serif;
    background: 
    linear-gradient(135deg, rgba(224, 234, 252, 0.8), rgba(207, 222, 243, 0.8)), /* Gradient */
    url("img/DJI_0710.JPG") no-repeat center center fixed; /* Background Image */
background-size: cover; /* Cover the entire viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}


.container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 400px;
    transition: transform 0.3s ease;
    text-align: center;
}

.container:hover {
    transform: translateY(-5px);
}

.logo {
    margin-bottom: 1.5rem;
}

.logo img {
    max-width: 50px; /* Adjust the size of the logo */
    margin: 0 auto;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #4a90e2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

.btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(90deg, #4a90e2, #50e3c2);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background: linear-gradient(90deg, #50e3c2, #4a90e2);
    transform: translateY(-2px);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

.login {
    margin-top: 1.5rem;
}

.login a {
    color: #4a90e2;
    text-decoration: none; /* Fixed typo here */
}

.login a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
        width: 90%;
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 1rem;
    }
}

/* Logo Placement */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px; /* Adjust size as needed */
    height: auto;
}
