.signin-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            padding: 20px;
        }

        .signin-wrapper {
            max-width: 450px;
            width: 100%;
        }

        .logo-text {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .logo-text .broadway {
            color: rgb(255, 72, 14);
        }

        .logo-text .basket {
            color: rgb(35, 38, 89);
        }

        .signin-card {
            background: #fff;
            border-radius: 14px;
            border-top: 3px solid rgb(255, 72, 14);
            box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(0, 0, 0, 0.34), 0px 1px 5px 0px rgba(0, 0, 0, 0.22);
            padding: 50px 40px;
        }

        .signin-title {
            font-size: 28px;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin-bottom: 40px;
            margin-top: 0;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-control {
            border: none;
            border-bottom: 2px solid #e0e0e0;
            border-radius: 0;
            padding: 12px 0;
            font-size: 16px;
            transition: border-color 0.3s;
            background: #fff;
        }

        .form-control:focus {
            box-shadow: none !important;
            border-bottom-color: #FF5722;
            background: #fff;
        }

        .form-control.is-invalid {
            border-bottom-color: #dc3545;
        }

        .form-label {
            color: #999;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .password-toggle {
            position: absolute;
            right: 0;
            top: 38px;
            cursor: pointer;
            color: #999;
        }

        .forgot-password {
            text-align: right;
            margin-top: -15px;
            margin-bottom: 25px;
        }

        .forgot-password a {
            color: #FF5722;
            text-decoration: none;
            font-size: 14px;
        }

        .btn-signin {
            background: #FF480e;
            border: none;
            border-radius: 50px;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 16px;
            padding: 6px 16px;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 285px;
            font-weight: 600;
            line-height: 0.75rem;
            border-radius: 40px;
            min-height: 40px;
        }

        .btn-signin:hover {
            box-shadow: 0 10px 20px rgba(211, 53, 5, 0.3);
            color: #fff;
        }

        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .signup-link {
            text-align: center;
            margin-top: 25px;
            color: #666;
            font-size: 14px;
        }

        .signup-link a {
            color: #FF5722;
            text-decoration: none;
            font-weight: 600;
        }

        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }

        .toast {
            min-width: 300px;
        }