
* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background-image: url("assets/bg.png");
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: #ffffff;
    width: 350px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.login-container h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #171717;
}
.login-container span{
    color: #444444;
}
.login-container p {
    text-align: center;
    margin-bottom: 25px;
    color: #999;
    font-size: 14px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #999;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #00acee
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #26a7de;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #242424;
}

.footer-text {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #999;
}
.error{color:red;}
