@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
}

html,body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d6efd;
}

p {
    font-size: 1.3rem;
    margin: 0;
    text-align: center;
    color: #333;
}

input:disabled {
    cursor: not-allowed;
}

.form-control {
    border: 2px solid #999 !important;
}

@media only screen and (max-width: 365px) {
    p {
        font-size: 1rem;
    }
}