* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #2c3e50, #3498db);
}

.login-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.login-title {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.login-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.login-input:focus {
    outline: none;
    border-color: #3498db;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: #3498db;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-button:hover {
    background: #2980b9;
}