﻿/* Reset default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f6f9;
}

.login-container {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.logo {
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    background-image: url('/images/logo.png');
    background-size:cover ;
    background-position: center;
    background-repeat: no-repeat;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #444;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
    }

.btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btn {
    flex: 1;
    padding: 10px;
    margin: 0 5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.btn-login {
    background: #007bff;
    color: #fff;
}

.btn-reset {
    background: #ccc;
    color: #000;
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: 12px;
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

/* Responsive tweaks */
@media(max - width: 480px) {
    .login-container {
        margin: 0 15px;
        padding: 20px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        margin: 5px 0;
    }
}
