/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background and Layout */
body {
    font-family: 'Arial', sans-serif;
    /* background: linear-gradient(135deg, #ff6f61, #00bfff); */
    background-image: url(universe.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(52, 9, 9, 0.1);
    max-width: 380px;
    width: 100%;
    text-align: center;
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 5px;
    padding-left: 25px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #ddd;
    outline: none;
    transition: 0.3s ease-in-out;
}

.input-group input:focus {
    border-color: #2575fc;
}

.input-group input::placeholder {
    color: #aaa;
}

.remember-me {
    margin-bottom: 20px;
    text-align: left;
    color: #777;
}

.remember-me input {
    margin-right: 8px;
}

.btn {
    width: 100%;
    padding: 5px;
    background-color: #2575fc;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #6a11cb;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #2575fc;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
}
