body {
    background: #D9D9D9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-size: 18px;
}

.logo {
    width: 200px;
    height: 185px;
    border-radius: 40px;
    margin-bottom: 30px;
}

.login-form {
    width: 400px;
    background: #FAFAFA;
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    height: 45px;
    color: #272727;
    font-size: 18px;
    font-family: Inter;
    font-weight: 100;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.submit-button {
    width: 100%;
    height: 55px;
    background: #231F20;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    cursor: pointer;
}

.signup-message {
    margin-top: 20px;
}

.signup-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 55px;
    color: white;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    text-decoration: none;
    background: #231F20;
    border-radius: 10px;
}