* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100vh;
}
.div-main {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.simple-header {
    display: flex;
    justify-content: center;
    background-color: var(--secondColor);
    border-width: 0px;
    border-bottom: 1px;
    border-style: solid;
    border-color: var(--strokeColor);
    padding: 15px;
    width: 100%;
}
.logo-icon {
    width: 25px;
}
.main {
    display: flex;
    justify-content: center;
    flex: 1;
    background-color: var(--primaryColor);
}
.button-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}
#login-button {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--secondColor);
    border-radius: var(--borderRadiusButton);
    border: none;
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.05);
    align-items: center;
    height: fit-content;
    cursor: pointer;
    transition: all ease-in-out 0.1s;
}
#login-button:hover {
    box-shadow: none;
}
.login-icon {
    width: 15px;
}
.login-text {
    font-family: 'Poppins', sans-serif;
    margin-bottom: -3px;
    font-weight: 300;
    letter-spacing: 2px;
}