* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    min-height: 100vh;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
}

.login-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo {
    position: absolute;
    top: 30px;
    left: 40px;
}

.logo img {
    height: 100px;
    width: auto;
    max-height: 150px;
}

.login-container {
    background: white;
    padding: 60px;
    width: 440px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-align: center;
}
.login-container h2{ 
    color:#f4b400;
    margin-bottom:25px; 
    letter-spacing:1px; 
}

@media (max-width: 900px) {
    .login-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
    }

    .logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 25px;
    }

    .logo img {
        height: 120px;
    }

    .login-container {
        width: 90%;
        padding: 50px;
    }
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 12px;
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
}
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 10px; 
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
    font-size: 16px;
    z-index: 2;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background: #f4b400;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.login-btn:hover {
    background: #e0a300;
}
.change {
    font-size: 12px;
    color: #f4b400;
    margin-top: 20px;
    cursor: pointer;
}

.error-box {
    background-color: #ffe5e5;
    color: #cc0000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

