﻿body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6f9;
    font-family: Arial;
}

.login-card {
    width: 350px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.logo img {
    width: 200px;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 20px;
}

/* INPUT WITH ICON */
.input-box {
    position: relative;
    margin: 15px 0;
}

    .input-box i {
        position: absolute;
        left: 10px;
        top: 12px;
        color: #555;
    }

    .input-box input {
        width: 100%;
        padding: 10px 10px 10px 35px;
        border: none;
        border-bottom: 1px solid #ccc;
        outline: none;
    }

/* LINKS */
.links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin: 10px 0;
}

/* BUTTON */
.login-btn {
    width: 100%;
    padding: 10px;
    background: #009688;
    color: white;
    border: none;
    border-radius: 25px;
    margin-top: 10px;
    cursor: pointer;
}

/* ERROR */
.error {
    color: red;
    margin-top: 10px;
}
