.home-page {
    background-image: url("../images/sign_in.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.ms-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 35px 40px;
    background-color: #0a244c;
    color: #ffffff;
    font-size: 26px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: 2px 2px 4px #000000;
}

.ms-login-btn img {
    height: 45px;
    width: 45px;
    margin-right: 20px;
}

.ms-login-btn:hover {
    background-color: #03244e;
}


.input-disabled {
  cursor: not-allowed;
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
