#box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 100px;
    border-radius: 0 0 10px 10px;
    background-color: #f4f4f4;
    border: none;
    box-shadow: 0px 4px 10px rgba(60, 60, 60, 0.5);
    text-align: center;
}

.fancy-h1 {
    font-size: 32px;
    padding: 10px 10px;
    margin-bottom: 22px;
    border: none;
    border-radius: 10px;
    color: #333333;
    background-color: #f4f4f4;
}

.input {
    width: 100%;
    padding-bottom: 12px;
    margin-bottom: 22px;

    font-size: 16px;

    background-color: transparent;
    opacity: 0.7;
    
    border: none;
    border-bottom: 2px solid #333333;
    outline: none;
}

.options {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    color: #555555;
    margin-bottom: 10px;
}

.forgot-link {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: black; /*clickin on this colour took 6 attempts*/
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.login-button:hover {
    background-color: #2f4527;
}

.signup-link {
    font-size: 14px;
    color: #555555;
    margin-top: 15px;
}

.signup {
    color: #4A76A8;
    text-decoration: none;
    font-weight: bold;
}

.signup:hover {
    text-decoration: underline;
}

@media (max-width: 670px) {
    #box {
        padding: 25px 20px;
    }
}

@media (max-width: 500px) {
    #box {
        border-radius: 10px 10px 0 0;
        margin-top: 120px;
        box-shadow: 0px -4px 10px rgba(60, 60, 60, 0.5);
    }
    
    main {
        margin-bottom: -100px;
    }
}
