/* Resetting some default styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh; /* Full viewport height */
    background: url('../images/123.jpg') no-repeat center center fixed; /* Adjust path */
    background-size: cover; /* Ensure the image covers the entire background */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo styles */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px; /* Position it to the left top corner */
    z-index: 10; /* Ensure it's on top of other elements */
}

.logo {
    width: 150px; /* Adjust the width of the logo */
    height: auto;
}

/* Login container styles */
.login-container {
    max-width: 400px;
    width: 100%; /* Allow container to adjust to smaller screens */
    height: auto; /* Make height auto-adjustable */
    min-height: 450px; /* Ensure a minimum height */
    margin: 0 auto;
    background-color: #ffffff0c;
    padding: 40px 20px; /* Increase the padding for more space */
    box-shadow: 0 6px 8px rgba(11, 147, 149, 0.1);
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}


/* Title style */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

/* Form group styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

/* Label styles */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Input styles */
input {
    width: 100%; /* Ensure input fields take the full width */
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

/* Submit button styles */

/* Extra Effect */ 
.shadow-btn {
    padding: 10px 20px;
    border: none;
    width: 50%;
    font-size: 17px;
    color: #fff;
    border-radius: 7px;
    letter-spacing: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s;
    transition-property: box-shadow;
  }
  
  .shadow-btn {
    background: #D62027;
    box-shadow: 0 0 1px rgb(143, 17, 3);
  }
  
  .shadow-btn:hover {
    box-shadow: 0 0 5px #ffffff,
                0 0 25px #ffffff,
                0 0 50px #ffffff,
                0 0 100px #ffffff;
  }





/* Ensure responsiveness on smaller screens */
@media (max-width: 600px) {
    .login-container {
        width: 90%; /* Make the form smaller on mobile devices */
        padding: 30px 15px; /* Adjust padding for small screens */
    }

    .submit-btn {
        font-size: 14px; /* Reduce the button font size for small screens */
    }
}
