@font-face {
    font-family: Inter;
    src: url('/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Inter, sans-serif;
    background-color: #495057;
}

.form-signin {
    max-width: 446px;
    padding: 1rem;
}

.form-signin .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.form-signin .center-content .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    color: #495057;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.form-signin .center-content .text {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.form-signin .form-label {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 0;
    color: #ADB5BD;
    padding-left: 12px;
}

.form-signin button {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    padding: 16px;
}

/* Custom button styles */
.btn-custom {
    color: #fff; /* Text color */
    background-color: #7749F8; /* Custom background color */
    border-color: #7749F8; /* Custom border color */
}

/* Hover state */
.btn-custom:hover {
    color: #fff;
    background-color: #653de2; /* Slightly darker shade for hover */
    border-color: #5a34cc;
}

/* Focus state */
.btn-custom:focus, .btn-custom.focus {
    color: #fff;
    background-color: #653de2; /* Same as hover */
    border-color: #5a34cc;
    box-shadow: 0 0 0 0.2rem rgba(119, 73, 248, 0.5); /* Focus ring */
}

/* Active state */
.btn-custom:active, .btn-custom.active,
.show > .btn-custom.dropdown-toggle {
    color: #fff;
    background-color: #5a34cc; /* Even darker shade for active */
    border-color: #4f2eb5;
}

.btn-custom:active:focus, .btn-custom.active:focus {
    box-shadow: 0 0 0 0.2rem rgba(119, 73, 248, 0.5);
}

/* Disabled state */
.btn-custom:disabled, .btn-custom.disabled {
    color: #fff;
    background-color: #7749F8;
    border-color: #7749F8;
    opacity: 0.65; /* Standard Bootstrap disabled opacity */
}
