.protected-page {
    display: flex;
    position: relative;
    height: 100%;
    background: var(--color-antiqueruby);
	min-height: 500px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

	.signin-form {
		background: #fff;
		border-radius: 20px;
		max-width: 600px;
		width: 100%;
		margin: auto;
		label {
			display: none;
		}

		input#pwbox-70 {
			width: 100%;
			border: 0;
			border-bottom: 1px solid #949494;
            margin-bottom: 1rem;
		}

		input[type="submit"] {
			width: 100%;
			border: 0;
			padding: 0.5rem;
			background: var(--color-antiqueruby);
			color: #fff;
			text-transform: uppercase;
		}
	}

}



.asset-card {
	border: 1px solid #CDCDCD;

	.assets-list {
		display: grid;
		gap: 1rem;
		
		li {
			display: flex ;
			align-items: center;
			gap: .5rem;

			.asset-icon-container {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				width: 1.5rem;
				height: 1.5rem;
				padding: .25rem;
				background: var(--color-antiqueruby);
				border-radius: 50em;
				flex: 0 0 auto;
				
				&.is-empty {
					width: 1rem;
					height: 1rem;
				}
				
				.asset-icon {
					font-size: 1.125rem;
					filter: brightness(0) invert(1);
				}
			}

			a {
				font-size: var(--text-lg);
				text-transform: uppercase;
				text-decoration: underline;
			}
		}
	}
}
