body {
    margin: 0;
    height: 100vh;
    background-color: #6ca7d9; /* blue background */
    font-family: Arial, sans-serif;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.top-right-text {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: normal;
    text-align: right;
    line-height: 1.2;
    user-select: none;
    color: #6ca7d9; /* Match background color */
}
.icon {
    margin-bottom: 40px;
    width: 60px;
    height: 60px;
    fill: black;
}
.button {
    background-color: white;
    border: 2px solid black;
    border-radius: 25px;
    width: 200px;
    height: 48px;
    padding: 12px;
    margin: 10px 0;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    display: block;
    box-sizing: border-box;
}
.button:hover {
    background-color: #e0e0e0;
}
.button-index {
    color: #6ca7d9; /* Match background color */
}
.button-login {
    color: #6ca7d9; /* Match background color */
}
.button-register {
    color: #6ca7d9; /* Match background color */
}
.input-field {
    background-color: white;
    border: 2px solid black;
    border-radius: 25px;
    width: 200px;
    height: 48px;
    padding: 12px;
    margin: 10px 0;
    font-size: 14px;
    text-align: center;
    display: block;
    box-sizing: border-box;
}
.url-text {
    margin-top: 20px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    user-select: none;
    color: #6ca7d9; /* Match background color */
}
