:root {
    --primary-color: #b7032c;
    --secondary-color: #050505;
    --light-white: #f9f9f9;
    --light-black: #191916;
    --red-gradient-rgb: rgb(174, 25, 32);
    --red-gradient-moz: -moz-linear-gradient(
        90deg,
        rgba(174, 25, 32, 1) 0%,
        rgba(228, 22, 44, 1) 55%
    );
    --red-gradient-webkit: -webkit-linear-gradient(
        90deg,
        rgba(174, 25, 32, 1) 0%,
        rgba(228, 22, 44, 1) 55%
    );
    --red-gradient-webkit: linear-gradient(
        90deg,
        rgba(174, 25, 32, 1) 0%,
        rgba(228, 22, 44, 1) 55%
    );
    --red-gradient-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae1920",endColorstr="#e4162c",GradientType=1);
}
body {
    font-family: "Poppins", sans-serif;
    background-color: var(--light-white);

}
a {
    text-decoration: none !important;
}
input[type="text"],input[type="email"],input[type="password"]
 {
    border: none !important;
    background-color: var(--light-white);
}
.custom-input:focus {
    border: 2px solid var(--light-black);
    background-color: var(--light-white);
}
.login-form {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    max-width: 400px;
}

.login-btn {
    border: none;
background-color: #b7032c;
    border-radius: 5px;
    width: 155px;
    height: 50px;
    color: white;
}
.logo-wrapper{
    background-color: var(--secondary-color);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    text-align: center;
}