@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* -- Reset -- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #f5f5f5;
}

#login-body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fa;
    font-family: Roboto;
}

#login-error {
    color: #d93025;
    margin-bottom: 12px;
    font-size: 15px;
}

.signin {
    background: #ffffff;
    padding: 40px 35px;
    width: 340px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Title */
.signin h2 {
    margin: 0 0 20px 0;
    font-weight: 600;
}

/* Inputs (uniform style) */
.signin input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-size: 15.5px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* Focus state */
.signin input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

/* Submit button styled like inputs */
.sumbit_btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4a90e2;
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.05s ease;
}

.sumbit_btn:hover {
    background: #3a78c2;
}

.sumbit_btn:active {
    transform: scale(0.98);
}

/* -- Buttons -- */
input[type="submit"],
button {
    padding: .45rem 1rem;
    border: 1px solid #999;
    border-radius: 4px;
    background: #fff;
    font-family: inherit;
    font-size: .9rem;
    cursor: pointer;
}

input[type="submit"]:hover,
button:hover {
    background: #f0f0f0;
}

