body {
    font-family: system-ui;
    background-color: #f0f0f0;
    margin: 0;
}

.page-title {
    text-align: center;
    font-size: 70px;
    margin-top: 20px;
}

.centerCompletely {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}

.shape {
    position: relative; /* Add this to make the button position correctly within this container */
    width: 400px;
    height: 400px;
    background-color: lightgray;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.continue-button {
    position: absolute;
    bottom: 20px; /* Position it 20px from the bottom */
    right: 20px;  /* Position it 20px from the right */
    background-color: darkgray;
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.continue-button:hover {
    background-color: #45a049;
}


/* Reusable text styling */
.text {
    position: absolute;
    transform: translateX(-50%);
    font-weight: bold;
    color: black;
    font-size: 18px;
}

/* Specific label positions */
.login-title {
    top: 8%; /* was 15% */
    left: 50%;
    font-size: 35px;
}

.username-label {
    top: 30%;
    left: 50%;
}

.input-username {
    top: 38%;
    left: 50%;
}

.password-label {
    top: 50%;
    left: 50%;
}

.input-password {
    top: 58%;
    left: 50%;
}

/* Input field styling */
.underline-input {
    position: absolute;
    transform: translateX(-50%);
    border: none;
    border-bottom: 2px solid #333;
    background: transparent;
    padding: 8px 4px;
    font-size: 16px;
    outline: none;
    width: 200px;
    color: black;
}

.underline-input::placeholder {
    color: #999;
}