@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

html, body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;


    /* background-image: url("../images/rainbow.jpg");
    background-size: cover; */
    background: linear-gradient(135deg, #fddb92, #d1fdff);
    
    /* background-color: whitesmoke; */

    width: 100%;
    height: 100%;
}

h1, h2 {
    font-weight: 300 !important;
}

h2 {
    margin: 0 0 30px 0;
}

.bg {
    /* background-color: rgba(255, 255, 255, 0.8); */
    height: 100%;
    overflow-y: scroll;

    padding: 0;
}

.header {
    /* background: white; */
    padding: 10px;
    display: flex;
    gap: 20px;
    align-items: center;

    justify-content: center;
}

.logo {
    background-color: white;
    padding: 2px;
    border-radius: 8px;

    width: 70px;
    height: 70px;
}

.content {
    margin: 30px 20px;
}

.box {
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 8px;
    padding: 20px;
} 

.input-col {
    margin-bottom: 15px !important;
}

.form-label {
    margin: 0;
}

button {
    width: 100% !important;
}

#return-message {
    width: 300px;
    background-color: blue;
}