*{
    box-sizing:border-box;
}
body{
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
} 

#sample-text-card{
    margin: 0px 65px;
    font-family: Comfortaa;
    color:white;
}

#sample-text-card h1{
    font-size: 65px;
}

#sample-text-card p{
    font-size: 14px;
}

.button-wrapper a{
    padding: 15px;
    width:200px;
    color:white;
    box-shadow: 0px 3px 6px rgb(7, 7, 73);
}
.register{
    margin-right: 7px;
    background-color: #FF4E00;
    border: 1px solid #8B2B00;
}

.login{
    background-color: #FFB114;
    border: 1px solid #543800;
}

.card{
    font-family: New Times Roman;
}

.card .form-control{
    margin: 10px 0px;
    box-shadow: 0px 3px 6px rgb(7, 7, 73);
}

.card .card-title{
    color:white;
}

.card button{
    background-color: #FF4E00;
    border: 1px solid #8B2B00;
    color:white;
    width:200px;
    margin: 10px 0px;
    box-shadow: 0px 3px 6px rgb(7, 7, 73);
}

.btn-login {
    background-color: #FF4E00;
    border: 1px solid #543800;
    color: white;
}

.btn-login:hover {
    background-color: #8B2B00;
    color: white;
}

.btn-login {
    transition: background-color 0.3s ease;
}

/* default.css */

/* Background utama */
body {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Times New Roman;
}

/* Card transparan rapi */
#sample-text-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  padding: 20px;
}

/* Judul */
h1 {
  font-weight: 700;
  font-size: 2rem;
}

/* Subjudul */
h5 {
  font-weight: 400;
  color: #dc3545;
}

/* Tombol */
.btn {
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: yellow;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  color: white;
}

/* Warna tombol : #EF4E00 #FFB114*/