/* Reset some default styles for better consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    margin: 0 auto;
    background-color: aliceblue;
}

/* Apply styles to the container div */
.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Style the headings */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Style the form labels and input fields */
label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Style the submit button */
input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Add some spacing between form elements */
form {
    text-align: left;
}

.login-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('./img/training-bg.jpg');
    background-size: cover;
    width: 100%;
}
.login-con{
    border: 2px solid #fff;
    padding: 2.5rem;
    background-color: #fff;
    box-shadow: 1px 1px 10px #000;
}