body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card container */
.login-card {
    background: #000000;
    padding: 10px;
    width: 320px;
    border-radius: 1%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100vh;
}

h2{
    font-size: 50px;
    margin-bottom: 2%;
    color: #f0e4e4;
}
.float-group {
    position: relative;
    margin-bottom: 2%;
}

.float-group input {
    width: 100%;
    padding: 12px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.float-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #777;
    background: white;
    padding: 0 5px;
    transition: 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

/* Floating effect when typing */
.float-group input:focus + label,
.float-group input:not(:placeholder-shown) + label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    color: #007bff;
}

/* Hide label trigger with this */
.float-group input {
    placeholder-shown: "";
}


.form-footer {
    margin-top: 2%;
}

.input-group button {
    display: block;
    margin: 5% auto 0 auto;
    width: 20%;
    padding: 3%;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

button:hover {
    background-color: #0a0909;
}

a {
    color: #fcf7f7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
for {
    color: #fcf7f7;
}
