/* /home/prescritoadmin/public_html/dashboard/frontend_dash/css/login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.login-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.logo-box {
    width: 94px;
    height: 94px;
    margin: 0 auto 20px;
    background-image: url('/frontend_dash/images/tako.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-radius: 8px;
}

.app-name {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #1a3c5e;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dedede;
    border-radius: 4px;
    font-size: 16px;
    color: #333333;
}

.form-group input:focus {
    outline: none;
    border-color: #1a3c5e;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #45a049;
}

.error-message {
    color: #c34647;
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

@media (max-width: 768px) {
    .login-box {
        padding: 20px;
        max-width: 90%;
    }

    .logo-box {
        width: 70px;
        height: 70px;
    }

    .app-name {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-group input {
        padding: 8px;
        font-size: 14px;
    }

    .login-button {
        padding: 10px;
        font-size: 14px;
    }
}