* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
}
.login-card h1 {
    color: #ff7043;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input::placeholder {
    color: #999;
}

.input-group input:focus {
    border-color: #ff7043; 
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #ff7043;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(255, 112, 67, 0.2);
    transition: background-color 0.3s, transform 0.1s;
}

.submit-btn:hover {
    background-color: #f96332;
}

.submit-btn:active {
    transform: scale(0.98);
}

.footer-text {
    margin-top: 25px;
    font-size: 12px;
    color: #5f6368;
    text-align: center;
    line-height: 1.5;
}
