body {
    background: rgba(250, 250, 250, 1);
    user-select: none;
    margin: 0;
    padding: 0;
}

.error {
    width: 385px;
    color: #c0392b;
    font-size: 14px;
    text-align: center;
}

.success {
    width: 385px;
    color: green;
    font-size: 14px;
    text-align: center;
}

.login {
    background: #fff;
    border: 1px solid rgb(236, 234, 234);
    border-radius: 0px;
    height: 430px;
    margin: 30px auto 0;
    width: 400px;
}

.profile {
    background: #fff;
    border: 1px solid rgb(236, 234, 234);
    border-radius: 0px;
    height: 550px;
    margin: 10px auto 0;
    width: 400px;
    overflow-y: auto;
}

.profile form {
    margin-bottom: 25px;
}

.profile-image-container {
    text-align: center;
    margin: 20px 0 auto;
}

.file-upload-wrapper {
    display: inline-block;
    position: relative;
    border: 2px dashed #3897F0;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.file-upload-wrapper:hover {
    background-color: rgba(56, 151, 240, 0.1);
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #3897F0;
    cursor: pointer;
    pointer-events: none;
}

.selected {
    color: #333;
}

#file-icon {
    font-size: 24px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.login h1,
.profile h1 {
    box-sizing: border-box;
    margin: 50px 0 30px 0;
    text-align: center;
    user-select: none;
}

input[type="password"],
input[type="text"] {
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgb(236, 234, 234);
    border-radius: 3px;
    box-shadow: 0 1px #fff;
    box-sizing: border-box;
    color: black;
    height: 39px;
    margin: 10px 0 0 40px;
    padding: 10px;
    font-size: 13px;
    width: 320px;
}

input[type="password"]::placeholder,
input[type="text"]::placeholder {
    color: rgb(165, 164, 164);
}

input[type="password"]:focus,
input[type="text"]:focus {
    outline: 0;
    border: 1px solid #a1a1a1;
}

input[type="submit"] {
    background: #3897F0;
    border: 0px;
    border-radius: 4px;
    box-sizing: border-box;
    color: #f8f8f8;
    font-weight: 600;
    height: 29px;
    margin: 14px 0 0 40px;
    width: 320px;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background: rgb(48, 144, 233);
    outline: 0;
}

input[type="submit"].delete-btn {
    background: #e74c3c;
}

input[type="submit"].delete-btn:hover,
input[type="submit"].delete-btn:focus {
    background: #e0392b;
}

.divider {
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    color: rgb(165, 164, 164);
    font-size: 13.5px;
    font-weight: 500;
    margin: 20px 0 0 40px;
    width: 320px;
}

.divider:before,
.divider:after {
    background-color: rgb(224, 221, 221);
    content: "";
    display: inline-block;
    height: 1.2px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.divider:before {
    right: 2em;
    margin-left: -50%;
}

.divider:after {
    left: 2em;
    margin-right: -50%;
}

.fbwrapper {
    text-align: center;
    margin-top: 25px;
}

.fb a {
    font-weight: 600;
    font-size: 14px;
    display: inline;
    vertical-align: middle;
    margin: 20px 0 0 10px;
    text-decoration: none;
    color: rgb(107, 106, 106);

}

.fb img {
    vertical-align: middle;
}

.forgotwrapper {
    text-align: center;
    margin-top: 35px;
}

.forgot a {
    margin: 20px 0 0 40px;
    text-decoration: none;
    color: rgb(107, 106, 106);
}

.infobox {
    background: #fff;
    border: 1px solid rgb(236, 234, 234);
    border-radius: 0px;
    height: 60px;
    margin: 10px auto 0;
    width: 400px;
}

.infobox p {
    box-sizing: border-box;
    margin: 22px 0 30px 0;
    text-align: center;
    user-select: none;
    font-size: 14px;
}

.infobox p a {
    color: rgb(94, 163, 243);
    text-decoration: none;
    font-weight: 600;
}

.apps {
    height: 100px;
    margin: 20px auto 0;
    width: 400px;
}

.apps p {
    box-sizing: border-box;
    margin: 10px 0 30px 0;
    text-align: center;
    user-select: none;
    font-size: 14px;
}

.apps span a {
    box-sizing: border-box;
    margin-left: 28px;
}

.app span a img {
    padding-left: 20px;
}