﻿.login-logo {
    width: 300px;
    height: 125px;
    top: 30px;
    left: 96px;
}

.login-input-wrapper {
    /*width: 440px;*/
    margin-bottom: 20px;
    font-family: "SF Pro Display-Regular", Helvetica, Arial, sans-serif;
}

/* Label styling */
.login-label {
    display: block;
    font-size: 16px;
    color: #111111;
    opacity: 0.4;
    margin-bottom: 6px;
}

/* Input + icon container */
.login-input-box {
    position: relative;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #fff;
}

/* Icon styling */
.login-icon {
    width: 63px;
    height: 50px;
    background-color: #d5e4fc;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-icon img {
        width: 40px;
        height: auto;
    }

/* Input field styling */
.login-input {
    flex: 1;
    height: 100%;
    padding: 0 15px;
    border: none;
    outline: none;
    font-size: 14px;
    border-radius: 0 10px 10px 0;
    font-family: inherit;
}

.login-hide {
    width: 63px;
    height: 50px;
    background-color: #d5e4fc;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-hide img {
        width: 40px;
        height: auto;
    }

.simple-login-button {
    display: inline-block;
    height: 50px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: "SF Pro Display-Bold", Helvetica, sans-serif;
    font-size: 18px;
    color: #ffffff;
    background: radial-gradient(50% 50% at 77% 50%, rgba(65, 211, 255, 1) 13%, rgba(20, 111, 197, 1) 89%);
    box-shadow: 0px 0px 15px #41d3ff, inset 0px 0px 10px rgba(65, 211, 255, 0.8);
    text-align: center;
    line-height: 50px;
    transition: all 0.3s ease;
}

    .simple-login-button:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }
