:root {
    --bg: #e4e4e4;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
}

* {
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}

body {
    margin: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 95vh;
    margin: auto;
}

.login-box {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 10px;
    width: 300px;
    border: none;
    -webkit-box-shadow: var(--shadow);
}


.element-block {
    width: 100%;
    padding-bottom: 20px;
}

.element-block input {
    width: 100%;
    height: 30px;
    border: 1px solid black;
    border-radius: 10px;
    text-align: center;
}

.element-block button {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    height: 30px;
    width: 100%;
    background: #393939;
    color: white;
}

.element-block button:hover {
    background: #5c5c5c;
}