@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: 
rgba(0, 0, 0, 0);
    font-size: 16px;
}

body {
    background-color: 
#f7f7f7;
    font-family: "Ubuntu", sans-serif;
    margin: 0;
    padding: 0;
    color: 
#222222;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    padding: 50px;
}

.container {
    background-color: 
white;
    border-radius: 20px;
    box-shadow: 2px 5px 7px 7px rgba(8, 8, 8, 0.175);
    margin: 0 auto;
    max-width: 450px;
    padding: 40px;
}

.container h1 {
    margin: 0 0 40px 0;
    text-align: center;
}

input,
button {
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    outline: none;
}

.input {
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid 
#bbbbbb;
    border-radius: 3px;
}

.input:hover {
    border-color: 
#999999;
}

.input:focus {
    border-color: 
#0d6efd;
}

.input.error {
    border-color: 
red !important;
}
label span {
    color: 
red;
}

.msg {
    border: 1px solid 
#66ba7a;
    background: 
#f3ffd1;
    padding: 10px;
    border-radius: 3px;
}
.msg.error {
    border-color: 
#e33b54;
    background: 
#f9d7dc;
}

[type="submit"] {
    background: #0d6efd;
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 3px;
    padding: 12px 0;
    cursor: pointer;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-top: 5px;
    font-weight: bold;
    width: 100%;
}

[type="submit"]:hover {
    box-shadow: 0 0.5rem 1rem 
rgba(0, 0, 0, 0.15);
}

label {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 3px;
}

.link {
    margin-top: 20px;
    text-align: center;
}

.link a {
    color: 
#0d6efd;
}
.prof {
    text-align: center;
}
.profile {
    text-align: center;
}
.profile img {
    display: inline-block;
    border: 3px solid #ccc;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
.prof img {
    display: inline-block;
    border: 3px solid #ccc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
h2 span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: 
#888;
}