﻿.login-page {
    width: 100%;
    min-height: 100vh;
    background-image: url("../Images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    text-align: center;
}

.login-logo {
    width: 80px;
    margin-bottom: 10px;
}

.site-name {
    color: white;
    font-size: 38px;
    margin-bottom: 30px;
}

.label-text {
    color: white;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 6px;
    font-size: 14px;
}

.input-box {
    width: 100%;
    padding: 12px;
    background: #088F8F;
    border: none;
    border-radius: 8px;
    color: black;
    font-size: 15px;
    box-sizing: border-box;
}

    .input-box::placeholder {
        color: rgba(255,255,255,0.7);
    }

.login-btn {
    width: 100%;
    margin-top: 25px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #088F8F;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .login-btn:hover {
        background: #4b97c6;
    }

.register-text {
    color: white;
    margin-top: 25px;
    font-size: 14px;
}

.register-btn {
    margin-top: 10px;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid #5fa8d3;
    color: #5fa8d3;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
}

    .register-btn:hover {
        background: #5fa8d3;
        color: white;
    }

@media (max-width: 768px) {

    .login-card {
        padding: 35px;
    }

    .site-name {
        font-size: 30px;
    }

    .input-box {
        font-size: 14px;
    }

    .login-btn {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .login-page {
        padding: 20px 12px;
    }

    .login-card {
        padding: 25px;
        border-radius: 15px;
    }

    .site-name {
        font-size: 24px;
    }

    .login-logo {
        width: 65px;
    }

    .input-box {
        font-size: 14px;
        padding: 10px;
    }

    .login-btn {
        font-size: 14px;
        padding: 10px;
    }

    .register-text {
        font-size: 13px;
    }
}
