/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    direction: rtl;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7f9fc;
    color: #222;
    -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
    width: 100%;
    height: 76px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    padding: 0 22px;
}

.navbar__logo {
    height: 40px;
}

/* SIGNIN WRAPPER */
.signin {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.signin__container {
    width: 100%;
    max-width: 430px;
}

/* Title */
.signin__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #111;
}

/* Form */
.signin__form {
    background: #fff;
    padding: 32px 26px;
    border-radius: 14px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
}

/* Input group */
.gi-input-group {
    margin-bottom: 22px;
}

.gi-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #333;
    display: block;
}

/* Input wrapper */
.gi-input-wrapper {
    position: relative;
}

/* INPUT */
.gi-input {
    width: 100%;
    padding: 16px 16px;
    padding-left: 45px;
    border: 1.5px solid #d4d4d4;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.23s ease;
}

.gi-input:focus {
    border-color: #4c8bf5;
    box-shadow: 0 0 0 3px rgba(76,139,245,0.2);
}

/* Eye icon */
.eye-btn {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 18px;
}

/* Error message */
.gi-error {
    margin-top: 5px;
    color: #d93025;
    font-size: 13px;
    display: none;
}

/* Forgot link */
.forgot-link {
    font-size: 14px;
    color: #4c8bf5;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}

/* BUTTONS */
.gi-btn {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    transition: 0.2s;
    margin-bottom: 12px;
}

/* Main button */
.gi-btn-primary {
    background: #4c8bf5;
    color: #fff;
}

.gi-btn-primary:hover {
    background: #3b75d8;
}

/* Outline button */
.gi-btn-secondary {
    background: #fff;
    border: 2px solid #4c8bf5;
    color: #4c8bf5;
}

.gi-btn-secondary:hover {
    background: rgba(76,139,245,0.07);
}

/* Signup links */
.signin__links {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.signin__links a {
    color: #4c8bf5;
    font-weight: 700;
    text-decoration: none;
}

/* SUCCESS PAGE */
.success-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.success-icon {
    font-size: 70px;
    color: #28b86f;
    margin-bottom: 18px;
}

.success-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.success-text {
    font-size: 15px;
    color: #555;
}

/* Responsive */
@media (max-width: 480px) {

    .signin__form {
        padding: 26px 18px;
    }

    .signin__title {
        font-size: 26px;
    }

    .gi-input {
        padding: 14px;
        padding-left: 40px;
    }

    .gi-btn {
        padding: 13px;
        font-size: 16px;
    }
}
