﻿body {
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
.login-container {
    backdrop-filter: blur(5px);
    width: 375px;
    margin: 50px auto;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5%;
}

.login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-control {
    border-left: transparent;
    border-right: transparent;
    border-top: transparent;
    border-bottom: 2px solid #5a5a5a;
    background: transparent;
}
 
a{
    text-decoration: none;
}
.btn {
    color: #000;
    border: 2px solid #5a5a5a;
}

    .btn:hover {
        transition: 0.4s;
        color: #006fd4;
        border: 2px solid #006fd4;
        box-shadow: 0 0 2px, 0 0 8px #006fd4;
        font-weight: bold;
    }

