.label {
    color: #000000;
    opacity: 0.9;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.01em;
    text-align: left;
    margin-top: 25px;
}

.form__input {
    padding: 0.5em;
    border-radius: 10px;
    border: 1px solid #a1a0a0;
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.1);
    font-size: 15px;
}

.form__input:focus {
    border: 2px solid #45c86d;
    opacity: 1;
    border-radius: 10px;
    background-color: #eeeeee;
}

.login {
    margin-top: 20px;
}

.instruction {
    margin-top: 20px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #000000;
    opacity: 0.5;
}

.btn {
    width: 110px;
}

@media screen and (max-width: 450px) and (orientation: portrait) {
    .instruction {
        margin-top: 15px;
        letter-spacing: 0.01em;
    }
}

@media screen and (max-width: 150px) {
    .instruction {
        font-size: 70%;
        line-height: 15px;
    }
    .label {
        font-size: 60%;
    }
    .btn {
        width: 100px;
    }
}

@media screen and (max-width: 100px) {
    .instruction {
        font-size: 60%;
    }
    .label {
        font-size: 50%;
    }
    .btn {
        width: fit-content;
        padding-left: 5px;
        padding-right: 5px;
    }
}

/*---------------------------------- Mobile view (landscape) ----------------------------*/

@media screen and (min-width: 550px) and (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .instruction {
        font-size: 10px;
        line-height: 15px;
    }
    .label {
        font-size: 8px;
		margin-top: 10px;
    }
    .form__input {
        font-size: 10px;
        line-height: 14px;
    }
	
	.alert.success {
		font-size: 10px;
	}
	
    .btn {
        margin-top: 10px;
        width: 80px;
        height: 30px;
        font-size: 12px;
    }
    .login {
        font-size: 12px;
        line-height: 5px;
        margin-top: 30px;
    }
}