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

html, body {
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Slab", serif;
}
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}
.login-box {
    width: 500px;
    background:#fff;
    box-shadow: 2px 2px 10px #d4d3d3;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.login-box h1 {
    font-size: 30px;
}
.input-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
    flex-direction: column;
    background: #eae9e9;
    padding: 4px 10px;
    border-radius: 4px;
}
.input-box input {
    width: 100%;
    outline: none;
    border: none;
    background: none;
    padding: 5px 0 5px 30px;
    caret-color: #626262;
    color: #303030;
}
.input-box label {
    font-size: 14px;
    color: #757474;
}
.input-box ion-icon {
    color: #757474;
    position: absolute;
    left: 10px;
    bottom: 7px;
    font-size: 20px;
}
.btn-box {
    width: 100%;
}
.btn-box button {
    width: 100%;
    height: 40px;
    margin-top: 15px;
    background: #177ad1;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.btn-box button:hover {
    background: #0e4f8f;
    font-size: 16px;
}