body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* Disable horizontal scrollbars */
    display: flex;
    justify-content: center;
    align-items: center;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
                                  -webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.login-section {
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
}

.form-section {
    width: 100%;
}

.microsoft-btn {
    outline: none;
    width: 100%;
    max-width: 370px;
    border-color: lightgray;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.microsoft-btn img {
    width: 25px;
    margin-right: 10px;
}

.microsoft-btn span {
    font-size: 14px;
    font-weight: 600;
    color: #4f4e4e;
}

.separator {
    width: 100%;
    margin: 20px 0;
    text-align: center;
    border-bottom: 1px solid black;
    height: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator span {
    background-color: white;
    padding: 0 10px;
    font-size: 14px;
}

.form-section label {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-section .input-form {
    width: 100%;
    height: 40px;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 0 10px;
    box-sizing: border-box;
}

input:focus,
button:focus,
a:focus {
    outline: none !important;
    box-shadow: 0 0 5px rgba(81, 203, 238, 1) !important;
}
