/* login.css */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.glassmorphism-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.glassmorphism-container h2 {
    margin-bottom: 30px;
    color: #333;
}

.glassmorphism-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    color: #fff !important;
    outline: none;
    transition: background 0.3s, border 0.3s;
}

.glassmorphism-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glassmorphism-container ::placeholder {
    color: #fff;
    opacity: 0.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.form-group input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 16px;
    color: #fff; /* Set the text color to white */
    outline: none;
    transition: background 0.3s, border 0.3s;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.small-text {
    font-size: smaller;
    font-style: italic;
    color: #ccc;
}

.btn-login,
.btn-reset {
    background-color: #007BFF;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-login:hover,
.btn-reset:hover {
    background-color: #0056b3;
}

.forgot-password,
.create-account {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.help-block {
    color: #dc3545;
}
