/* Tribologik — Login Page (Blumatrix-inspired theme) */
@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #edf2f7;
}

body {
    background-color: #edf2f7;
}

/* Login page wrapper */
.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Card */
.card {
    height: auto;
    min-height: 380px;
    margin: auto;
    width: 420px;
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.10) !important;
}

.card-header {
    background-color: #13284c !important;
    border-radius: 20px 20px 0 0 !important;
    border-bottom: none !important;
    padding: 24px 28px 20px !important;
}

.card-header h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
    letter-spacing: -0.3px;
}

.card-body {
    padding: 28px !important;
}

/* Input group prepend icons */
.input-group-prepend span {
    width: 48px;
    background-color: #59e5fc;
    color: #13284c;
    border: 0 !important;
    border-radius: 50px 0 0 50px !important;
    font-size: 15px;
}

/* Inputs */
.form-control {
    border-radius: 0 50px 50px 0 !important;
    border: 1.5px solid #dee2e6 !important;
    padding: 0 16px !important;
    height: 44px !important;
    font-size: 14px !important;
    font-family: 'Nunito', sans-serif;
    color: #333333;
}

.form-control:focus {
    border-color: #59e5fc !important;
    box-shadow: 0 0 0 3px rgba(89, 229, 252, 0.15) !important;
    outline: none;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Login button */
.login_btn {
    background-color: #59e5fc;
    border-color: #59e5fc;
    color: #13284c !important;
    border-radius: 9999px !important;
    height: 42px !important;
    padding: 0 28px !important;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.login_btn:hover {
    background-color: #3dd8f2;
    border-color: #3dd8f2;
    color: #13284c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(89, 229, 252, 0.4);
}

/* Links */
.links { color: #848484; font-size: 13px; }
.links a { margin-left: 4px; color: #59e5fc; }
.links a:hover { color: #3dd8f2; text-decoration: underline; }

/* Remember checkbox */
.remember { color: #555555; font-size: 13px; }
.remember input { width: 16px; height: 16px; margin-left: 10px; margin-right: 6px; }

/* Social icons */
.social_icon span {
    font-size: 28px;
    margin-left: 8px;
    color: #59e5fc;
}
.social_icon span:hover { color: #13284c; cursor: pointer; }
.social_icon { position: absolute; right: 20px; top: -40px; }

/* Bottom of card */
.card-footer {
    background-color: transparent !important;
    border-top: 1px solid #edf2f7 !important;
    border-radius: 0 0 20px 20px !important;
    padding: 16px 28px !important;
}
