﻿a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
body {
    background-image: url(../Images/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.header {
    display: flex;
    justify-content: center;
}
.box-img-head {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;    
    gap: 20px;
    margin-top: 10px;
}
.box-img-head span,h3{
    width: max-content;
}
.header h1 {
    font-family: 'Quicksand',sans-serif;
    margin-top: 10px;
}
.footer {
    color: white;
    position: relative;
    bottom: 0%;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}
*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.background {
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.background .shape {
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}

.shape:first-child {
    background: linear-gradient( #1845ad, #23a2f6 );
    left: -80px;
    top: -80px;
}

.shape:last-child {
    background: linear-gradient( to right, #ff512f, #f09819 );
    right: -30px;
    bottom: -80px;
}
.login-box {
    background-image: url(../Images/FullBodyBank-sm-new.png);
    width: 1080px;
    height: 582px;
    position: relative;
    left: 5%;
}
form {
    height: 582px;
    width: 437px;
    position: relative;
    left: 4%;
    /*backdrop-filter: blur(10px);*/
    /*border: 2px solid rgba(255, 255, 255, 0.1);*/
    /*box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);*/
    padding: 25px 20px;
    margin: 15px 0px;
    /*background-color: rgba(255,255,255,0.13);*/
}

form * {
    font-family: 'Quicksand',sans-serif;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
    color: #ffffff;
}

form h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

label {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    color: black;
    font-weight: 500;
}

::placeholder {
    color: #e5e5e5;
}

.btn-slider {
    margin-top: 50px;
    width: 100%;
    background-color: white;
    color: #174076;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.btn-slider {
    --hover: #06172b;
}

.btn-slider:hover,
.btn-slider:focus {
    color: white;
    transition-delay: 0s;
    background-color: #187cfe;
}


@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--hover);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--hover);
    }
}